summaryrefslogtreecommitdiff
path: root/lib/include
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2013-01-24 08:32:23 +0100
committerLinus Nordberg <linus@nordberg.se>2013-01-24 09:30:02 +0100
commit683e3e1bbbdfe2f08dc12f1e840e71ed6088a0e3 (patch)
tree73e26b7fe3cd2231f9a82fa1a10fe3c196ce8585 /lib/include
parent54ca8b0dc915b6fac25de9d7cdaf6154dbbb27da (diff)
Rename rs_packet_flags members.
Uppercase to make them appear as the constants they are, as opposed to variables. Remove 'flag' suffix, typically used for variables. Spell out HEADER.
Diffstat (limited to 'lib/include')
-rw-r--r--lib/include/radsec/radsec-impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/include/radsec/radsec-impl.h b/lib/include/radsec/radsec-impl.h
index a4d97f0..6c02dcf 100644
--- a/lib/include/radsec/radsec-impl.h
+++ b/lib/include/radsec/radsec-impl.h
@@ -116,9 +116,9 @@ struct rs_connection {
};
enum rs_packet_flags {
- rs_packet_hdr_read_flag,
- rs_packet_received_flag,
- rs_packet_sent_flag,
+ RS_PACKET_HEADER_READ,
+ RS_PACKET_RECEIVED,
+ RS_PACKET_SENT,
};
struct radius_packet;