mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
Fix some pseudo-enumeration constants in the IPv6 implementation so
they are unique and thus actually usable as flagbits. I wonder how it even worked so far... MFC after: 1 week
This commit is contained in:
parent
248f19ee7b
commit
10f461e8cb
1 changed files with 2 additions and 2 deletions
|
|
@ -48,9 +48,9 @@ struct sipcp {
|
|||
#define IPCP_MYADDR_DYN 2 /* my address is dynamically assigned */
|
||||
#define IPCP_MYADDR_SEEN 4 /* have seen his address already */
|
||||
#ifdef notdef
|
||||
#define IPV6CP_MYIFID_DYN 2 /* my ifid is dynamically assigned */
|
||||
#define IPV6CP_MYIFID_DYN 8 /* my ifid is dynamically assigned */
|
||||
#endif
|
||||
#define IPV6CP_MYIFID_SEEN 4 /* have seen his ifid already */
|
||||
#define IPV6CP_MYIFID_SEEN 0x10 /* have seen his ifid already */
|
||||
};
|
||||
|
||||
#define AUTHNAMELEN 32
|
||||
|
|
|
|||
Loading…
Reference in a new issue