aboutsummaryrefslogtreecommitdiffstats
path: root/man7
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-12-23 13:45:24 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-12-23 13:45:24 +0000
commit5895e7eb8db03c2a60a100dfa0fe6a6515bf718c (patch)
tree7357285775d55350b962bfae54130fb3ef1514ba /man7
parentd9cf37f470adcba2f4df7866155499a5df58461b (diff)
downloadman-pages-5895e7eb8db03c2a60a100dfa0fe6a6515bf718c.tar.gz
wspace in SYNOPSIS
Diffstat (limited to 'man7')
-rw-r--r--man7/rtnetlink.72
-rw-r--r--man7/socket.72
-rw-r--r--man7/tcp.72
-rw-r--r--man7/udp.72
4 files changed, 4 insertions, 4 deletions
diff --git a/man7/rtnetlink.7 b/man7/rtnetlink.7
index 60ba4df38a..2f95fe20cf 100644
--- a/man7/rtnetlink.7
+++ b/man7/rtnetlink.7
@@ -19,7 +19,7 @@ rtnetlink, NETLINK_ROUTE \- Linux IPv4 routing socket
.B #include <linux/rtnetlink.h>
.br
.B #include <sys/socket.h>
-
+.sp
.BI "rtnetlink_socket = socket(PF_NETLINK, int " socket_type ", NETLINK_ROUTE);"
.SH DESCRIPTION
Rtnetlink allows the kernel's routing tables to be read and altered.
diff --git a/man7/socket.7 b/man7/socket.7
index 85dd96e816..d1d460f953 100644
--- a/man7/socket.7
+++ b/man7/socket.7
@@ -22,7 +22,7 @@
socket \- Linux socket interface
.SH SYNOPSIS
.B #include <sys/socket.h>
-.br
+.sp
.IB mysocket " = socket(int " socket_family ", int " socket_type ", int " protocol );
.SH DESCRIPTION
This manual page describes the Linux networking socket layer user
diff --git a/man7/tcp.7 b/man7/tcp.7
index 3af5b6daa9..9d48507851 100644
--- a/man7/tcp.7
+++ b/man7/tcp.7
@@ -21,7 +21,7 @@ tcp \- TCP protocol
.B #include <netinet/in.h>
.br
.B #include <netinet/tcp.h>
-.br
+.sp
.B tcp_socket = socket(PF_INET, SOCK_STREAM, 0);
.SH DESCRIPTION
This is an implementation of the TCP protocol defined in
diff --git a/man7/udp.7 b/man7/udp.7
index 4653509114..243d313467 100644
--- a/man7/udp.7
+++ b/man7/udp.7
@@ -12,7 +12,7 @@ udp \- User Datagram Protocol for IPv4
.B #include <sys/socket.h>
.br
.B #include <netinet/in.h>
-.br
+.sp
.B udp_socket = socket(PF_INET, SOCK_DGRAM, 0);
.SH DESCRIPTION
This is an implementation of the User Datagram Protocol