1 /* 2 * This file is subject to the terms and conditions of the GNU General Public 3 * License. See the file "COPYING" in the main directory of this archive 4 * for more details. 5 * 6 * Copyright (C) 2000-2003 Silicon Graphics, Inc. All rights reserved. 7 */ 8 9 #ifndef _ASM_IA64_SN_IFCONFIG_NET_H 10 #define _ASM_IA64_SN_IFCONFIG_NET_H 11 12 #define NETCONFIG_FILE "/tmp/ifconfig_net" 13 #define POUND_CHAR '#' 14 #define MAX_LINE_LEN 128 15 #define MAXPATHLEN 128 16 17 struct ifname_num { 18 long next_eth; 19 long next_fddi; 20 long next_hip; 21 long next_tr; 22 long next_fc; 23 long size; 24 }; 25 26 struct ifname_MAC { 27 char name[16]; 28 unsigned char dev_addr[7]; 29 unsigned char addr_len; /* hardware address length */ 30 }; 31 32 #endif /* _ASM_IA64_SN_IFCONFIG_NET_H */ 33