Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/lib/libc/net Pull up rev. 1.11:



details:   https://anonhg.NetBSD.org/src/rev/8ab33ba839a9
branches:  netbsd-1-5
changeset: 488297:8ab33ba839a9
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Jun 27 21:44:03 2000 +0000

description:
Pull up rev. 1.11:
add cmetz paper, correct example

diffstat:

 lib/libc/net/getaddrinfo.3 |  14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diffs (42 lines):

diff -r 4a2dc00841ea -r 8ab33ba839a9 lib/libc/net/getaddrinfo.3
--- a/lib/libc/net/getaddrinfo.3        Tue Jun 27 21:42:42 2000 +0000
+++ b/lib/libc/net/getaddrinfo.3        Tue Jun 27 21:44:03 2000 +0000
@@ -1,5 +1,5 @@
-.\"    $NetBSD: getaddrinfo.3,v 1.10 2000/05/11 03:08:46 itojun Exp $
-.\"    $KAME: getaddrinfo.3,v 1.12 2000/05/11 03:02:45 itojun Exp $
+.\"    $NetBSD: getaddrinfo.3,v 1.10.4.1 2000/06/27 21:44:03 thorpej Exp $
+.\"    $KAME: getaddrinfo.3,v 1.14 2000/06/22 20:25:50 itojun Exp $
 .\"
 .\" Copyright (c) 1983, 1987, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -370,7 +370,7 @@
 s = -1;
 for (res = res0; res; res = res->ai_next) {
        s = socket(res->ai_family, res->ai_socktype,
-               res->ai_protocol);
+           res->ai_protocol);
        if (s < 0) {
                cause = "socket";
                continue;
@@ -414,7 +414,7 @@
 nsock = 0;
 for (res = res0; res && nsock < MAXSOCK; res = res->ai_next) {
        s[nsock] = socket(res->ai_family, res->ai_socktype,
-               res->ai_protocol);
+           res->ai_protocol);
        if (s[nsock] < 0) {
                cause = "socket";
                continue;
@@ -521,6 +521,12 @@
 .%N draft-ietf-ipngwg-scopedaddr-format-01.txt
 .%O work in progress material
 .Re
+.Rs
+.%A Craig Metz
+.%T Protocol Independence Using the Sockets API
+.%B "Proceedings of the freenix track: 2000 USENIX annual technical conference"
+.%D June 2000
+.Re
 .\"
 .Sh HISTORY
 The implementation first appeared in WIDE Hydrangea IPv6 protocol stack kit.



Home | Main Index | Thread Index | Old Index