mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Correct the returned message lengths for timeval and bintime control
messages (SO_BINTIME, SO_TIMEVAL). Obtained from: phk
This commit is contained in:
parent
b887a1555c
commit
599c412493
1 changed files with 3 additions and 3 deletions
|
|
@ -28,7 +28,7 @@
|
|||
.\" @(#)getsockopt.2 8.4 (Berkeley) 5/2/95
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd February 26, 2012
|
||||
.Dd April 5, 2013
|
||||
.Dt GETSOCKOPT 2
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
|
@ -437,7 +437,7 @@ The
|
|||
.Vt cmsghdr
|
||||
fields have the following values for TIMESTAMP:
|
||||
.Bd -literal
|
||||
cmsg_len = sizeof(struct timeval);
|
||||
cmsg_len = CMSG_LEN(sizeof(struct timeval));
|
||||
cmsg_level = SOL_SOCKET;
|
||||
cmsg_type = SCM_TIMESTAMP;
|
||||
.Ed
|
||||
|
|
@ -445,7 +445,7 @@ fields have the following values for TIMESTAMP:
|
|||
and for
|
||||
.Dv SO_BINTIME :
|
||||
.Bd -literal
|
||||
cmsg_len = sizeof(struct bintime);
|
||||
cmsg_len = CMSG_LEN(sizeof(struct bintime));
|
||||
cmsg_level = SOL_SOCKET;
|
||||
cmsg_type = SCM_BINTIME;
|
||||
.Ed
|
||||
|
|
|
|||
Loading…
Reference in a new issue