Home | History | Annotate | Download | only in common

Lines Matching refs:interface

39 struct	if_info *iflist;		/* Interface List		*/
44 * Return ethernet address for interface
83 mopLogErrX("deviceEthAddr: Never saw interface `%s'!", ifname);
141 char interface[IFNAME_SIZE];
163 snprintf(interface, sizeof(interface), "ent%d\0", unit);
165 snprintf(interface, sizeof(interface), "%s%d\0", dev, unit);
168 snprintf(interface, sizeof(interface), "%s", ifname);
175 if (strcmp(p->if_name,interface) == 0) {
181 syslog(LOG_INFO, "Initialized %s", interface);
185 trans = pfTrans(interface);
192 deviceOpen(interface,MOP_K_PROTO_RC,TRANS_ETHER);
195 deviceOpen(interface,MOP_K_PROTO_RC,TRANS_8023);
198 deviceOpen(interface,MOP_K_PROTO_RC,TRANS_ETHER);
199 deviceOpen(interface,MOP_K_PROTO_RC,TRANS_8023);
202 deviceOpen(interface,MOP_K_PROTO_RC,TRANS_ETHER+TRANS_8023);
212 deviceOpen(interface,MOP_K_PROTO_DL,TRANS_ETHER);
215 deviceOpen(interface,MOP_K_PROTO_DL,TRANS_8023);
218 deviceOpen(interface,MOP_K_PROTO_DL,TRANS_ETHER);
219 deviceOpen(interface,MOP_K_PROTO_DL,TRANS_8023);
222 deviceOpen(interface,MOP_K_PROTO_DL,TRANS_ETHER+TRANS_8023);