taglinefilesource code
intrfc139net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc146net/ipx/af_ipx.cintrfc = sk->ipx_intrfc;
intrfc147net/ipx/af_ipx.cif (intrfc == NULL) {
intrfc152net/ipx/af_ipx.cs=intrfc->if_sklist;
intrfc154net/ipx/af_ipx.cintrfc->if_sklist=s->next;
intrfc233net/ipx/af_ipx.cipxitf_insert_socket(ipx_interface *intrfc, ipx_socket *sk)
intrfc237net/ipx/af_ipx.csk->ipx_intrfc = intrfc;
intrfc239net/ipx/af_ipx.cif (intrfc->if_sklist == NULL) {
intrfc240net/ipx/af_ipx.cintrfc->if_sklist = sk;
intrfc242net/ipx/af_ipx.cfor (s = intrfc->if_sklist; s->next != NULL; s = s->next)
intrfc249net/ipx/af_ipx.cipxitf_find_socket(ipx_interface *intrfc, unsigned short port)
intrfc253net/ipx/af_ipx.cfor (s=intrfc->if_sklist; 
intrfc264net/ipx/af_ipx.cipxitf_down(ipx_interface *intrfc)
intrfc270net/ipx/af_ipx.cipxrtr_del_routes(intrfc);
intrfc273net/ipx/af_ipx.cfor (s = intrfc->if_sklist; s != NULL; ) {
intrfc283net/ipx/af_ipx.cintrfc->if_sklist = NULL;
intrfc286net/ipx/af_ipx.cif (intrfc == ipx_interfaces) {
intrfc287net/ipx/af_ipx.cipx_interfaces = intrfc->if_next;
intrfc290net/ipx/af_ipx.c(i != NULL) && (i->if_next != intrfc);
intrfc293net/ipx/af_ipx.cif ((i != NULL) && (i->if_next == intrfc)) 
intrfc294net/ipx/af_ipx.ci->if_next = intrfc->if_next;
intrfc298net/ipx/af_ipx.cif (intrfc == ipx_primary_net)
intrfc300net/ipx/af_ipx.cif (intrfc == ipx_internal_net)
intrfc303net/ipx/af_ipx.ckfree_s(intrfc, sizeof(*intrfc));
intrfc347net/ipx/af_ipx.cipxitf_demux_socket(ipx_interface *intrfc, struct sk_buff *skb, int copy) 
intrfc353net/ipx/af_ipx.csock1 = ipxitf_find_socket(intrfc, ipx->ipx_dest.sock);
intrfc362net/ipx/af_ipx.cif (ipx_primary_net && (intrfc != ipx_primary_net)) {
intrfc441net/ipx/af_ipx.cipxitf_adjust_skbuff(ipx_interface *intrfc, struct sk_buff *skb)
intrfc445net/ipx/af_ipx.cint  out_offset = intrfc->if_ipx_offset;
intrfc485net/ipx/af_ipx.cipxitf_send(ipx_interface *intrfc, struct sk_buff *skb, char *node)
intrfc488net/ipx/af_ipx.cstruct device  *dev = intrfc->if_dev;
intrfc489net/ipx/af_ipx.cstruct datalink_proto  *dl = intrfc->if_dlink;
intrfc501net/ipx/af_ipx.cif (ipx->ipx_dest.net == intrfc->if_netnum) {
intrfc502net/ipx/af_ipx.cif (memcmp(intrfc->if_node, node, IPX_NODE_LEN) == 0) 
intrfc503net/ipx/af_ipx.creturn ipxitf_demux_socket(intrfc, skb, 0);
intrfc505net/ipx/af_ipx.cipxitf_demux_socket(intrfc, skb, send_to_wire);
intrfc511net/ipx/af_ipx.cif (ipx->ipx_source.net != intrfc->if_netnum) {
intrfc538net/ipx/af_ipx.cskb = ipxitf_adjust_skbuff(intrfc, skb);
intrfc567net/ipx/af_ipx.cipxitf_add_local_route(ipx_interface *intrfc)
intrfc569net/ipx/af_ipx.creturn ipxrtr_add_route(intrfc->if_netnum, intrfc, NULL);
intrfc576net/ipx/af_ipx.cstatic int ipxitf_rcv(ipx_interface *intrfc, struct sk_buff *skb)
intrfc595net/ipx/af_ipx.cif ((intrfc->if_netnum == 0L) && 
intrfc605net/ipx/af_ipx.cintrfc->if_netnum = ipx->ipx_source.net;
intrfc606net/ipx/af_ipx.c(void) ipxitf_add_local_route(intrfc);
intrfc614net/ipx/af_ipx.cipx_device_name(intrfc),
intrfc615net/ipx/af_ipx.cipx_frame_name(intrfc->if_dlink_type));
intrfc620net/ipx/af_ipx.cipx->ipx_dest.net = intrfc->if_netnum;
intrfc622net/ipx/af_ipx.cipx->ipx_source.net = intrfc->if_netnum;
intrfc624net/ipx/af_ipx.cif (intrfc->if_netnum != ipx->ipx_dest.net) 
intrfc647net/ipx/af_ipx.c|| (memcmp(intrfc->if_node, ipx->ipx_dest.node, IPX_NODE_LEN) == 0)) 
intrfc649net/ipx/af_ipx.creturn ipxitf_demux_socket(intrfc, skb, 0);
intrfc658net/ipx/af_ipx.cipxitf_insert(ipx_interface *intrfc)
intrfc662net/ipx/af_ipx.cintrfc->if_next = NULL;
intrfc664net/ipx/af_ipx.cipx_interfaces = intrfc;
intrfc668net/ipx/af_ipx.ci->if_next = intrfc;
intrfc672net/ipx/af_ipx.cipx_primary_net = intrfc;
intrfc678net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc688net/ipx/af_ipx.cintrfc=(ipx_interface *)kmalloc(sizeof(ipx_interface),GFP_ATOMIC);
intrfc689net/ipx/af_ipx.cif (intrfc==NULL)
intrfc691net/ipx/af_ipx.cintrfc->if_dev=NULL;
intrfc692net/ipx/af_ipx.cintrfc->if_netnum=idef->ipx_network;
intrfc693net/ipx/af_ipx.cintrfc->if_dlink_type = 0;
intrfc694net/ipx/af_ipx.cintrfc->if_dlink = NULL;
intrfc695net/ipx/af_ipx.cintrfc->if_sklist = NULL;
intrfc696net/ipx/af_ipx.cintrfc->if_internal = 1;
intrfc697net/ipx/af_ipx.cintrfc->if_ipx_offset = 0;
intrfc698net/ipx/af_ipx.cintrfc->if_sknum = IPX_MIN_EPHEMERAL_SOCKET;
intrfc699net/ipx/af_ipx.cmemcpy((char *)&(intrfc->if_node), idef->ipx_node, IPX_NODE_LEN);
intrfc700net/ipx/af_ipx.cipx_internal_net = intrfc;
intrfc701net/ipx/af_ipx.cipx_primary_net = intrfc;
intrfc702net/ipx/af_ipx.cipxitf_insert(intrfc);
intrfc703net/ipx/af_ipx.creturn ipxitf_add_local_route(intrfc);
intrfc724net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc772net/ipx/af_ipx.cif ((intrfc = ipxitf_find_using_phys(dev, dlink_type)) == NULL) {
intrfc775net/ipx/af_ipx.cintrfc=(ipx_interface *)kmalloc(sizeof(ipx_interface),GFP_ATOMIC);
intrfc776net/ipx/af_ipx.cif (intrfc==NULL)
intrfc778net/ipx/af_ipx.cintrfc->if_dev=dev;
intrfc779net/ipx/af_ipx.cintrfc->if_netnum=idef->ipx_network;
intrfc780net/ipx/af_ipx.cintrfc->if_dlink_type = dlink_type;
intrfc781net/ipx/af_ipx.cintrfc->if_dlink = datalink;
intrfc782net/ipx/af_ipx.cintrfc->if_sklist = NULL;
intrfc783net/ipx/af_ipx.cintrfc->if_sknum = IPX_MIN_EPHEMERAL_SOCKET;
intrfc786net/ipx/af_ipx.cipx_primary_net = intrfc;
intrfc787net/ipx/af_ipx.cintrfc->if_internal = 0;
intrfc788net/ipx/af_ipx.cintrfc->if_ipx_offset = dev->hard_header_len + datalink->header_length;
intrfc789net/ipx/af_ipx.cmemset(intrfc->if_node, 0, IPX_NODE_LEN);
intrfc790net/ipx/af_ipx.cmemcpy((char *)&(intrfc->if_node[IPX_NODE_LEN-dev->addr_len]), dev->dev_addr, dev->addr_len);
intrfc792net/ipx/af_ipx.cipxitf_insert(intrfc);
intrfc796net/ipx/af_ipx.cif (intrfc->if_netnum == 0L) 
intrfc799net/ipx/af_ipx.creturn ipxitf_add_local_route(intrfc);
intrfc807net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc824net/ipx/af_ipx.cintrfc = ipxitf_find_using_phys(dev, dlink_type);
intrfc825net/ipx/af_ipx.cif (intrfc != NULL) {
intrfc826net/ipx/af_ipx.cipxitf_down(intrfc);
intrfc836net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc852net/ipx/af_ipx.cintrfc=(ipx_interface *)kmalloc(sizeof(ipx_interface),GFP_ATOMIC);
intrfc853net/ipx/af_ipx.cif (intrfc!=NULL) {
intrfc854net/ipx/af_ipx.cintrfc->if_dev=dev;
intrfc855net/ipx/af_ipx.cintrfc->if_netnum=0L;
intrfc856net/ipx/af_ipx.cintrfc->if_dlink_type = dlink_type;
intrfc857net/ipx/af_ipx.cintrfc->if_dlink = datalink;
intrfc858net/ipx/af_ipx.cintrfc->if_sklist = NULL;
intrfc859net/ipx/af_ipx.cintrfc->if_internal = 0;
intrfc860net/ipx/af_ipx.cintrfc->if_sknum = IPX_MIN_EPHEMERAL_SOCKET;
intrfc861net/ipx/af_ipx.cintrfc->if_ipx_offset = dev->hard_header_len + 
intrfc863net/ipx/af_ipx.cmemset(intrfc->if_node, 0, IPX_NODE_LEN);
intrfc864net/ipx/af_ipx.cmemcpy((char *)&(intrfc->if_node[IPX_NODE_LEN-dev->addr_len]), 
intrfc866net/ipx/af_ipx.cipxitf_insert(intrfc);
intrfc869net/ipx/af_ipx.creturn intrfc;
intrfc955net/ipx/af_ipx.cipxrtr_add_route(unsigned long network, ipx_interface *intrfc, unsigned char *node)
intrfc970net/ipx/af_ipx.crt->ir_intrfc = intrfc;
intrfc982net/ipx/af_ipx.cipxrtr_del_routes(ipx_interface *intrfc)
intrfc987net/ipx/af_ipx.cif (tmp->ir_intrfc == intrfc) {
intrfc999net/ipx/af_ipx.cipx_interface *intrfc;
intrfc1002net/ipx/af_ipx.cintrfc = ipxitf_find_using_net(rd->ipx_router_network);
intrfc1003net/ipx/af_ipx.cif (intrfc == NULL)
intrfc1006net/ipx/af_ipx.creturn ipxrtr_add_route(rd->ipx_network, intrfc, rd->ipx_router_node);
intrfc1039net/ipx/af_ipx.cipx_interface *intrfc;
intrfc1050net/ipx/af_ipx.cintrfc = ipx_primary_net;
intrfc1058net/ipx/af_ipx.cintrfc = rt->ir_intrfc;
intrfc1061net/ipx/af_ipx.cipx_offset = intrfc->if_ipx_offset;
intrfc1098net/ipx/af_ipx.creturn ipxitf_send(intrfc, skb, (rt && rt->ir_routed) ? 
intrfc1177net/ipx/af_ipx.cipx_device_name(ipx_interface *intrfc)
intrfc1179net/ipx/af_ipx.creturn (intrfc->if_internal ? "Internal" :
intrfc1180net/ipx/af_ipx.c(intrfc->if_dev ? intrfc->if_dev->name : "Unknown"));
intrfc1506net/ipx/af_ipx.cipx_first_free_socketnum(ipx_interface *intrfc)
intrfc1508net/ipx/af_ipx.cunsigned short  socketNum = intrfc->if_sknum;
intrfc1513net/ipx/af_ipx.cwhile (ipxitf_find_socket(intrfc, ntohs(socketNum)) != NULL)
intrfc1519net/ipx/af_ipx.cintrfc->if_sknum = socketNum;
intrfc1526net/ipx/af_ipx.cipx_interface *intrfc;
intrfc1537net/ipx/af_ipx.cintrfc = ipxitf_find_using_net(addr->sipx_network);
intrfc1538net/ipx/af_ipx.cif (intrfc == NULL)
intrfc1542net/ipx/af_ipx.caddr->sipx_port = ipx_first_free_socketnum(intrfc);
intrfc1553net/ipx/af_ipx.cif(ipxitf_find_socket(intrfc, addr->sipx_port)!=NULL) {
intrfc1561net/ipx/af_ipx.cipxitf_insert_socket(intrfc, sk);
intrfc1712net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc1733net/ipx/af_ipx.cintrfc = ipxitf_find_using_phys(dev, pt->type);
intrfc1734net/ipx/af_ipx.cif (intrfc == NULL) {
intrfc1736net/ipx/af_ipx.cintrfc = ipxitf_auto_create(dev, pt->type);
intrfc1739net/ipx/af_ipx.cif (intrfc == NULL) {
intrfc1746net/ipx/af_ipx.creturn ipxitf_rcv(intrfc, skb);