diff options
Diffstat (limited to 'inet/protocols')
-rw-r--r-- | inet/protocols/rwhod.h | 4 | ||||
-rw-r--r-- | inet/protocols/talkd.h | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/inet/protocols/rwhod.h b/inet/protocols/rwhod.h index 93008a4181..4ce44906a0 100644 --- a/inet/protocols/rwhod.h +++ b/inet/protocols/rwhod.h @@ -36,13 +36,15 @@ #ifndef _RWHOD_H_ #define _RWHOD_H_ +#include <sys/types.h> + /* * rwho protocol packet format. */ struct outmp { char out_line[8]; /* tty name */ char out_name[8]; /* user id */ - long out_time; /* time on */ + int32_t out_time; /* time on */ }; struct whod { diff --git a/inet/protocols/talkd.h b/inet/protocols/talkd.h index 0d30d5bfa3..c523bf590d 100644 --- a/inet/protocols/talkd.h +++ b/inet/protocols/talkd.h @@ -54,6 +54,8 @@ * stream connection through which the conversation takes place. */ +#include <sys/types.h> + /* * Client->server request message format. */ @@ -62,10 +64,10 @@ typedef struct { u_char type; /* request type, see below */ u_char answer; /* not used */ u_char pad; - u_long id_num; /* message id */ + u_int32_t id_num; /* message id */ struct osockaddr addr; /* old (4.3) style */ struct osockaddr ctl_addr; /* old (4.3) style */ - long pid; /* caller's process id */ + int32_t pid; /* caller's process id */ #define NAME_SIZE 12 char l_name[NAME_SIZE];/* caller's name */ char r_name[NAME_SIZE];/* callee's name */ @@ -81,7 +83,7 @@ typedef struct { u_char type; /* type of request message, see below */ u_char answer; /* respose to request message, see below */ u_char pad; - u_long id_num; /* message id */ + u_int32_t id_num; /* message id */ struct osockaddr addr; /* address for establishing conversation */ } CTL_RESPONSE; |