diff options
author | Susant Sahani <ssahani@gmail.com> | 2015-11-16 12:15:47 +0530 |
---|---|---|
committer | Susant Sahani <ssahani@gmail.com> | 2015-11-18 09:34:18 +0530 |
commit | 74bb646ee5a812e91949c03fa461bc4bd7d2d7b8 (patch) | |
tree | 77005e44f0d3679e44a2be084aef627ddd92471c /man/systemd.socket.xml | |
parent | 92939fc4c0261dccd4b755186aba84a9b1412bed (diff) |
socket: Add support for socket protcol
Now we don't support the socket protocol like
sctp and udplite .
This patch add a new config param
SocketProtocol: udplite/sctp
With this now we can configure the protocol as
udplite = IPPROTO_UDPLITE
sctp = IPPROTO_SCTP
Tested with nspawn:
Diffstat (limited to 'man/systemd.socket.xml')
-rw-r--r-- | man/systemd.socket.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/man/systemd.socket.xml b/man/systemd.socket.xml index beac053bf0..43841c2399 100644 --- a/man/systemd.socket.xml +++ b/man/systemd.socket.xml @@ -311,6 +311,15 @@ </varlistentry> <varlistentry> + <term><varname>SocketProtocol=</varname></term> + <listitem><para>Takes a one of <option>udplite</option> + or <option>sctp</option>. Specifies a socket protocol + (<constant>IPPROTO_UDPLITE</constant>) UDP-Lite + (<constant>IPPROTO_SCTP</constant>) SCTP socket respectively. </para> + </listitem> + </varlistentry> + + <varlistentry> <term><varname>BindIPv6Only=</varname></term> <listitem><para>Takes a one of <option>default</option>, <option>both</option> or <option>ipv6-only</option>. Controls |