diff options
| author | Charles.Forsyth <devnull@localhost> | 2006-12-22 20:52:35 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2006-12-22 20:52:35 +0000 |
| commit | 46439007cf417cbd9ac8049bb4122c890097a0fa (patch) | |
| tree | 6fdb25e5f3a2b6d5657eb23b35774b631d4d97e4 /man/2/srv | |
| parent | 37da2899f40661e3e9631e497da8dc59b971cbd0 (diff) | |
20060303-partial
Diffstat (limited to 'man/2/srv')
| -rw-r--r-- | man/2/srv | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/man/2/srv b/man/2/srv new file mode 100644 index 00000000..f217a0d9 --- /dev/null +++ b/man/2/srv @@ -0,0 +1,66 @@ +.TH SRV 2 +.SH NAME +srv \- network name and address translation when hosted +.SH SYNOPSIS +.EX +include "srv.m" +srv := load Srv Srv->PATH; +Srv: module +{ + init: fn(); + iph2a: fn(host: string): list of string; + ipa2h: fn(addr: string): list of string; + ipn2p: fn(protocol, service: string): string; +}; +.EE +.SH DESCRIPTION +.B Srv +provides access to the host operating system's +name and address translation when Inferno is running hosted. +The module's implementation is usually built-in to +.IR emu (1), +and then only on some platforms. +It uses the Internet name resolution services of the host operating system +(eg, +.B gethostbyname +on Unix systems). +Its services are normally only used internally by +.IR cs (8) +and +.IR dns (8), +and even they give priority to data in +.IR services (6) +and +.IR dns (6) +if available. +Other Inferno applications normally give network addresses to the functions of +.IR sys-dial (2), +and they are then translated automatically, using the services of +.IR cs (8). +.PP +.B Init +must be called before any other function is used. +.PP +Given a host name, +.B iph2a +returns a list of its Internet addresses (if any). +Given an Internet address, +.B ipa2h +returns a list of host names (if any) that have that address. +The results are only as accurate as the host system's name service. +.PP +.B Ipn2p +returns the port number (as a string) for the given +.I service +when accessed using a particular protocol +.I protocol +(typically +.B tcp +or +.BR udp ). +.SH SOURCE +.B /emu/port/srv.c +.SH SEE ALSO +.IR sys-file2chan (2), +.IR cs (8), +.IR dns (8) |
