aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2018-07-15 08:58:37 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2018-07-15 08:58:37 +0200
commit418dd92c031e79f709397ecfeadc97ade61f2ee7 (patch)
tree3cebbbab9c7c47bb14eacdcde768990f9dcfbfa4
parent3ef2a133bfd6b4fecaacfecee0cdc37daa7a9252 (diff)
downloadman-pages-418dd92c031e79f709397ecfeadc97ade61f2ee7.tar.gz
recv.2: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man2/recv.226
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