afh_recv: Replace ggo text section by description.
[paraslash.git] / m4 / gengetopt / dccp_recv.m4
1 args "--no-version --no-help"
2
3 option "host" i
4 "ip or host"
5 string default="localhost"
6 optional
7 details="
8         Both IPv4 and IPv6 addresses are supported.
9 "
10
11 option "port" p
12 "port to connect to"
13 int
14 default="8000"
15 optional
16
17 option "ccid" c
18 "CCID preference(s) for this connection"
19 int
20 # restrict the maximum number of times this option can be passed
21 optional multiple(-10)
22 # currently known CCIDs:
23 # - CCID-2 (RFC 4341),
24 # - CCID-3 (RFC 4342),
25 # - CCID-4 (RFC 5622),
26 # - CCID-248 ... CCID-254 are experimental (RFC 4340, 19.5)
27 values="2", "3", "4", "248", "249", "250", "251", "252", "253", "254"
28 details="
29         When present exactly once, this option mandates the CCID for the
30         sender-receiver connection. If it is passed more than once, it sets
31         a preference list where the order of appearance signifies descending
32         priority. For example, passing 4, 2, 3 creates the preference list
33         (CCID-4, CCID-2, CCID-3), assigning CCID-4 highest preference.
34
35         The request is reconciled with the CCIDs on the server through the
36         'server-priority' mechanism of RFC 4340 6.3.1/10. The server CCIDs
37         can be listed by calling 'para_client si'.
38
39 "