aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/net.h
diff options
context:
space:
mode:
authorPedro Tammela <pctammela@gmail.com>2019-03-14 10:45:23 -0300
committerDavid S. Miller <davem@davemloft.net>2019-03-15 15:29:47 -0700
commit8a3c245c031944f2176118270e7bc5d4fd4a1075 (patch)
treecc059d7347d01cc19db79e8abe18afd45d8c39dd /include/linux/net.h
parentnet: strparser: fix a missing check for create_singlethread_workqueue (diff)
downloadlinux-dev-8a3c245c031944f2176118270e7bc5d4fd4a1075.tar.xz
linux-dev-8a3c245c031944f2176118270e7bc5d4fd4a1075.zip
net: add documentation to socket.c
Adds missing sphinx documentation to the socket.c's functions. Also fixes some whitespaces. I also changed the style of older documentation as an effort to have an uniform documentation style. Signed-off-by: Pedro Tammela <pctammela@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/net.h')
-rw-r--r--include/linux/net.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/net.h b/include/linux/net.h
index 651fca72286c..c606c72311d0 100644
--- a/include/linux/net.h
+++ b/include/linux/net.h
@@ -83,6 +83,12 @@ enum sock_type {
#endif /* ARCH_HAS_SOCKET_TYPES */
+/**
+ * enum sock_shutdown_cmd - Shutdown types
+ * @SHUT_RD: shutdown receptions
+ * @SHUT_WR: shutdown transmissions
+ * @SHUT_RDWR: shutdown receptions/transmissions
+ */
enum sock_shutdown_cmd {
SHUT_RD,
SHUT_WR,