diff options
author | David du Colombier <0intro@gmail.com> | 2012-08-03 19:58:31 +0200 |
---|---|---|
committer | David du Colombier <0intro@gmail.com> | 2012-08-03 19:58:31 +0200 |
commit | ac2662695a41207618873798914d70242b826a63 (patch) | |
tree | 3bbdb2dc78092d6c142f8f1b4c6f932e3f8f54da /man | |
parent | 9bcf13737602ccefa95214df5ca2e118f332ebd0 (diff) | |
download | plan9port-ac2662695a41207618873798914d70242b826a63.tar.gz plan9port-ac2662695a41207618873798914d70242b826a63.tar.bz2 plan9port-ac2662695a41207618873798914d70242b826a63.zip |
dial(3): update dialparse
R=rsc
http://codereview.appspot.com/6455083
Diffstat (limited to 'man')
-rw-r--r-- | man/man3/dial.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/man/man3/dial.3 b/man/man3/dial.3 index 5c645287..39092ae0 100644 --- a/man/man3/dial.3 +++ b/man/man3/dial.3 @@ -37,7 +37,7 @@ void freenetconninfo(NetConnINfo*) int dialparse(char *addr, char **net, char **unix, .br .B - u32int *host, int *port) + void *host, int *port) .SH DESCRIPTION For these routines, .I addr @@ -181,7 +181,7 @@ will return .I Dialparse parses a network address as described above into a network name, a Unix domain socket address, -an IPv4 host address, and an IPv4 port number. +an IP host address, and an IP port number. .PP .I Getnetconninfo returns a structure containing information about a @@ -198,8 +198,8 @@ network connection. The structure is: char *lserv; /* local service */ char *rsys; /* remote system */ char *rserv; /* remote service */ - char *laddr; /* local address */ - char *raddr; /* remote address */ + char *laddr; /* local address */ + char *raddr; /* remote address */ }; .EE .PP |