diff options
| -rw-r--r-- | man2/recv.2 | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/man2/recv.2 b/man2/recv.2 index 6681d6cc22..e90477e1da 100644 --- a/man2/recv.2 +++ b/man2/recv.2 @@ -178,13 +178,13 @@ structure: struct sock_extended_err { - uint32_t ee_errno; /* error number */ - uint8_t ee_origin; /* where the error originated */ - uint8_t ee_type; /* type */ - uint8_t ee_code; /* code */ - uint8_t ee_pad; /* padding */ - uint32_t ee_info; /* additional information */ - uint32_t ee_data; /* other data */ + uint32_t ee_errno; /* Error number */ + uint8_t ee_origin; /* Where the error originated */ + uint8_t ee_type; /* Type */ + uint8_t ee_code; /* Code */ + uint8_t ee_pad; /* Padding */ + uint32_t ee_info; /* Additional information */ + uint32_t ee_data; /* Other data */ /* More data may follow */ }; @@ -332,13 +332,13 @@ struct iovec { /* Scatter/gather array items */ }; struct msghdr { - void *msg_name; /* optional address */ - socklen_t msg_namelen; /* size of address */ - struct iovec *msg_iov; /* scatter/gather array */ + void *msg_name; /* Optional address */ + socklen_t msg_namelen; /* Size of address */ + struct iovec *msg_iov; /* Scatter/gather array */ size_t msg_iovlen; /* # elements in msg_iov */ - void *msg_control; /* ancillary data, see below */ - size_t msg_controllen; /* ancillary data buffer len */ - int msg_flags; /* flags on received message */ + void *msg_control; /* Ancillary data, see below */ + size_t msg_controllen; /* Ancillary data buffer len */ + int msg_flags; /* Flags on received message */ }; .EE .in |
