/* net/if.h -- declarations for a link-level socket Copyright (C) 2008 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Bartley . The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #ifndef _NET_IF_DL_H #define _NET_IF_DL_H 1 #include struct sockaddr_dl { __SOCKADDR_COMMON(sdl_); unsigned short sdl_index; unsigned char sdl_type; unsigned char sdl_nlen; unsigned char sdl_alen; unsigned char sdl_slen; char sdl_data[244]; }; #endif /* _NET_IF_DL_H */