Cosmetic change.

This commit is contained in:
Gregory Nutt 2017-11-01 13:57:07 -06:00
parent de5b36c198
commit 5c2e740ce3

View File

@ -110,7 +110,11 @@
#define MSG_NOSIGNAL 0x4000 /* Do not generate SIGPIPE. */
#define MSG_MORE 0x8000 /* Sender will send more. */
/* Socket options */
/* Protocol levels supported by get/setsockopt(): */
#define SOL_SOCKET 0 /* Only socket-level options supported */
/* Socket-level options */
#define SO_DEBUG 0 /* Enables recording of debugging information (get/set).
* arg: pointer to integer containing a boolean value */
@ -145,10 +149,6 @@
* output function blocks because flow control prevents data from
* being sent(get/set). arg: struct timeval */
/* Protocol levels supported by get/setsockopt(): */
#define SOL_SOCKET 0 /* Only socket-level options supported */
/* Values for the 'how' argument of shutdown() */
#define SHUT_RD 1 /* Bit 0: Disables further receive operations */