URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems/] [c/] [src/] [libnetworking/] [libc/] [linkaddr.3] - Rev 1765
Compare with Previous | Blame | View Log
.\" Copyright (c) 1993.\" The Regents of the University of California. All rights reserved..\".\" This code is derived from software contributed to Berkeley by.\" Donn Seeley at BSDI..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" From: @(#)linkaddr.3 8.1 (Berkeley) 7/28/93.\" $Id: linkaddr.3,v 1.2 2001-09-27 12:01:53 chris Exp $.\".Dd June 17, 1996.Dt LINK_ADDR 3.Os BSD 4.4.Sh NAME.Nm link_addr ,.Nm link_ntoa.Nd elementary address specification routines for link level access.Sh SYNOPSIS.Fd #include <sys/types.h>.Fd #include <sys/socket.h>.Fd #include <net/if_dl.h>.Ft void.Fn link_addr "const char *addr" "struct sockaddr_dl *sdl".Ft char *.Fn link_ntoa "const struct sockaddr_dl *sdl".Sh DESCRIPTIONThe routine.Fn link_addrinterprets character strings representinglink-level addresses, returning binary information suitablefor use in system calls.The routine.Fn link_ntoatakesa link-leveladdress and returns an.Tn ASCIIstring representing some of the information present,including the link level address itself, and the interface nameor number, if present.This facility is experimental and isstill subject to change..PpFor.Fn link_addr ,the string.Fa addrmay containan optional network interface identifier of the form.Dq "name unit-number" ,suitable for the first argument to.Xr ifconfig 8 ,followed in all cases by a colon andan interface address in the form ofgroups of hexadecimal digitsseparated by periods.Each group represents a byte of address;address bytes are filled left to right fromlow order bytes through high order bytes..Pp.\" A regular expression may make this format clearer:.\" .Bd -literal -offset indent.\" ([a-z]+[0-9]+:)?[0-9a-f]+(\e.[0-9a-f]+)*.\" .Ed.\" .PpThus.Li le0:8.0.9.13.d.30represents an ethernet addressto be transmitted on the first Lance ethernet interface..PpThe direct use of these functions is deprecated in favor of the.Xr addr2ascii 3interface; however, portable programs cannot rely on the latter as it isnot yet widely implemented..Sh RETURN VALUES.Fn link_ntoaalways returns a null terminated string..Fn link_addrhas no return value.(See.Sx BUGS . ).Sh SEE ALSO.Xr addr2ascii 3.\" .Xr iso 4.Sh HISTORYThe.Fn link_addrand.Fn link_ntoafunctions appeared in.Bx 4.3 Reno ..Sh BUGSThe returned values for link_ntoareside in a static memory area..PpThe function.Fn link_addrshould diagnose improperly formed input, and there should be an unambiguousway to recognize this..PpIf the.Va sdl_lenfield of the link socket address.Fa sdlis 0,.Fn link_ntoawill not insert a colon before the interface address bytes.If this translated address is given to.Fn link_addrwithout inserting an initial colon,the latter will not interpret it correctly.
