mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
Make ng_ID_t fixed size, so that its maximum value is platform independent.
This will be important in future.
This commit is contained in:
parent
c6964951c6
commit
bb964e745b
1 changed files with 2 additions and 2 deletions
|
|
@ -109,8 +109,8 @@ struct ng_mesg {
|
|||
#define NGF_ORIG 0x00000000 /* the msg is the original request */
|
||||
#define NGF_RESP 0x00000001 /* the message is a response */
|
||||
|
||||
/* Type of a unique node ID */
|
||||
#define ng_ID_t unsigned int
|
||||
/* Type of a unique node ID. */
|
||||
#define ng_ID_t uint32_t
|
||||
|
||||
/*
|
||||
* Here we describe the "generic" messages that all nodes inherently
|
||||
|
|
|
|||
Loading…
Reference in a new issue