LINKADR(3) BSD Library Functions Manual LINKADR(3)
NAME
linkaddr, linkntoa -- elementary address specification routines for
link level access
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
##include <>
##include <>
##include <>
void
linkaddr(const char *addr, struct sockaddrdl *sdl);
char *
linkntoa(const struct sockaddrdl *sdl);
DESCRIPTION
The routine linkaddr() interprets character strings representing link-
level addresses, returning binary information suitable for use in system
calls. The routine linkntoa() takes a link-level address and returns an
ASCI string representing some of the information present, including the
link level address itself, and the interface name or number, if present.
This facility is experimental and is still subject to change.
For linkaddr(), the string addr may contain an optional network inter-
face identifier of the form ``name unit-number'', suitable for the first
argument to ifconfig(8), followed in all cases by a colon and an inter-
face address in the form of groups of hexadecimal digits separated by
periods. Each group represents a byte of address; address bytes are
filled left to right from low order bytes through high order bytes.
Thus le0:8.0.9.13.d.30 represents an ethernet address to be transmitted
on the first Lance ethernet interface.
The direct use of these functions is deprecated in favor of the
addr2ascii(3) interface; however, portable programs cannot rely on the
latter as it is not yet widely implemented.
RETURN VALUES
The linkntoa() function always returns a null terminated string. The
linkaddr() function has no return value. (See BUGS.)
SEE ALSO
addr2ascii(3)
HISTORY
The linkaddr() and linkntoa() functions appeared in 4.3BSD-Reno.
BUGS
The returned values for linkntoa reside in a static memory area.
The function linkaddr() should diagnose improperly formed input, and
there should be an unambiguous way to recognize this.
If the sdllen field of the link socket address sdl is 0, linkntoa()
will not insert a colon before the interface address bytes. If this
translated address is given to linkaddr() without inserting an initial
colon, the latter will not interpret it correctly.
BSD June 17, 1996 BSD
|