Declaration for ip_timestamp from NetLib:netinet.h.ip
(Struct)
/*
* Time stamp option structure.
*/
struct ip_timestamp {
u_int ipt_code:8; /* IPOPT_TS */
u_int ipt_len:8; /* size of structure (variable) */
u_int ipt_ptr:8; /* index of current entry */
u_int ipt_flg:4, /* flags, see below */
ipt_oflw:4; /* overflow counter */
union ipt_timestamp {
n_long ipt_time[1];
struct ipt_ta {
struct in_addr ipt_addr;
n_long ipt_time;
} ipt_ta[1];
} ipt_timestamp;
};
Open original source file
See header files's help page
|
|
|