ossp-pkg/sa/sa.pod 1.20 -> 1.21
--- sa.pod 2002/01/02 12:43:50 1.20
+++ sa.pod 2002/01/02 13:35:36 1.21
@@ -435,10 +435,15 @@
the expected following argument(s) are dependent on the particular
option. Currently the following options are implement (option arguments
in parenthesis): C<SA_OPTION_NAGLE> (C<int> I<yesno>) for enabling
-(I<yesno>=C<1>) or disabling (I<yesno>=C<0>) Nagle's Algorithm
-(see RFC898); C<SA_OPTION_NONBLOCK> (C<int> I<yesno>) for enabling
-(I<yesno>=C<1>) or disabling (I<yesno>=C<0>) non-blocking I/O mode (see
-C<O_NONBLOCK> of fcntl(2)).
+(I<yesno>=C<1>) or disabling (I<yesno>=C<0>) Nagle's Algorithm (see
+RFC898); C<SA_OPTION_REUSEADDR> (C<int> I<yesno>) for enabling
+(I<yesno>=C<1>) or disabling (I<yesno>=C<0>) the reusability of
+the address on binding (see C<SO_REUSEADDR> of setsockopt(2)),
+C<SA_OPTION_REUSEPORT> (C<int> I<yesno>) for enabling (I<yesno>=C<1>)
+or disabling (I<yesno>=C<0>) the reusability of the port on binding
+(see C<SO_REUSEPORT> of setsockopt(2)), C<SA_OPTION_NONBLOCK> (C<int>
+I<yesno>) for enabling (I<yesno>=C<1>) or disabling (I<yesno>=C<0>)
+non-blocking I/O mode (see C<O_NONBLOCK> of fcntl(2)).
Example: C<sa_option(sa, SA_OPTION_NONBLOCK, 1);>
|
|