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)) {
intrfc429net/ipx/af_ipx.cipxitf_adjust_skbuff(ipx_interface *intrfc, struct sk_buff *skb)
intrfc433net/ipx/af_ipx.cint  out_offset = intrfc->if_ipx_offset;
intrfc473net/ipx/af_ipx.cipxitf_send(ipx_interface *intrfc, struct sk_buff *skb, char *node)
intrfc476net/ipx/af_ipx.cstruct device  *dev = intrfc->if_dev;
intrfc477net/ipx/af_ipx.cstruct datalink_proto  *dl = intrfc->if_dlink;
intrfc489net/ipx/af_ipx.cif (ipx->ipx_dest.net == intrfc->if_netnum) {
intrfc490net/ipx/af_ipx.cif (memcmp(intrfc->if_node, node, IPX_NODE_LEN) == 0) 
intrfc491net/ipx/af_ipx.creturn ipxitf_demux_socket(intrfc, skb, 0);
intrfc493net/ipx/af_ipx.cipxitf_demux_socket(intrfc, skb, send_to_wire);
intrfc499net/ipx/af_ipx.cif (ipx->ipx_source.net != intrfc->if_netnum) {
intrfc526net/ipx/af_ipx.cskb = ipxitf_adjust_skbuff(intrfc, skb);
intrfc555net/ipx/af_ipx.cipxitf_add_local_route(ipx_interface *intrfc)
intrfc557net/ipx/af_ipx.creturn ipxrtr_add_route(intrfc->if_netnum, intrfc, NULL);
intrfc564net/ipx/af_ipx.cstatic int ipxitf_rcv(ipx_interface *intrfc, struct sk_buff *skb)
intrfc583net/ipx/af_ipx.cif ((intrfc->if_netnum == 0L) && 
intrfc593net/ipx/af_ipx.cintrfc->if_netnum = ipx->ipx_source.net;
intrfc594net/ipx/af_ipx.c(void) ipxitf_add_local_route(intrfc);
intrfc602net/ipx/af_ipx.cipx_device_name(intrfc),
intrfc603net/ipx/af_ipx.cipx_frame_name(intrfc->if_dlink_type));
intrfc608net/ipx/af_ipx.cipx->ipx_dest.net = intrfc->if_netnum;
intrfc610net/ipx/af_ipx.cipx->ipx_source.net = intrfc->if_netnum;
intrfc612net/ipx/af_ipx.cif (intrfc->if_netnum != ipx->ipx_dest.net) 
intrfc635net/ipx/af_ipx.c|| (memcmp(intrfc->if_node, ipx->ipx_dest.node, IPX_NODE_LEN) == 0)) 
intrfc637net/ipx/af_ipx.creturn ipxitf_demux_socket(intrfc, skb, 0);
intrfc646net/ipx/af_ipx.cipxitf_insert(ipx_interface *intrfc)
intrfc650net/ipx/af_ipx.cintrfc->if_next = NULL;
intrfc652net/ipx/af_ipx.cipx_interfaces = intrfc;
intrfc656net/ipx/af_ipx.ci->if_next = intrfc;
intrfc660net/ipx/af_ipx.cipx_primary_net = intrfc;
intrfc666net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc676net/ipx/af_ipx.cintrfc=(ipx_interface *)kmalloc(sizeof(ipx_interface),GFP_ATOMIC);
intrfc677net/ipx/af_ipx.cif (intrfc==NULL)
intrfc679net/ipx/af_ipx.cintrfc->if_dev=NULL;
intrfc680net/ipx/af_ipx.cintrfc->if_netnum=idef->ipx_network;
intrfc681net/ipx/af_ipx.cintrfc->if_dlink_type = 0;
intrfc682net/ipx/af_ipx.cintrfc->if_dlink = NULL;
intrfc683net/ipx/af_ipx.cintrfc->if_sklist = NULL;
intrfc684net/ipx/af_ipx.cintrfc->if_internal = 1;
intrfc685net/ipx/af_ipx.cintrfc->if_ipx_offset = 0;
intrfc686net/ipx/af_ipx.cintrfc->if_sknum = IPX_MIN_EPHEMERAL_SOCKET;
intrfc687net/ipx/af_ipx.cmemcpy((char *)&(intrfc->if_node), idef->ipx_node, IPX_NODE_LEN);
intrfc688net/ipx/af_ipx.cipx_internal_net = intrfc;
intrfc689net/ipx/af_ipx.cipx_primary_net = intrfc;
intrfc690net/ipx/af_ipx.cipxitf_insert(intrfc);
intrfc691net/ipx/af_ipx.creturn ipxitf_add_local_route(intrfc);
intrfc712net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc760net/ipx/af_ipx.cif ((intrfc = ipxitf_find_using_phys(dev, dlink_type)) == NULL) {
intrfc763net/ipx/af_ipx.cintrfc=(ipx_interface *)kmalloc(sizeof(ipx_interface),GFP_ATOMIC);
intrfc764net/ipx/af_ipx.cif (intrfc==NULL)
intrfc766net/ipx/af_ipx.cintrfc->if_dev=dev;
intrfc767net/ipx/af_ipx.cintrfc->if_netnum=idef->ipx_network;
intrfc768net/ipx/af_ipx.cintrfc->if_dlink_type = dlink_type;
intrfc769net/ipx/af_ipx.cintrfc->if_dlink = datalink;
intrfc770net/ipx/af_ipx.cintrfc->if_sklist = NULL;
intrfc771net/ipx/af_ipx.cintrfc->if_sknum = IPX_MIN_EPHEMERAL_SOCKET;
intrfc774net/ipx/af_ipx.cipx_primary_net = intrfc;
intrfc775net/ipx/af_ipx.cintrfc->if_internal = 0;
intrfc776net/ipx/af_ipx.cintrfc->if_ipx_offset = dev->hard_header_len + datalink->header_length;
intrfc777net/ipx/af_ipx.cmemset(intrfc->if_node, 0, IPX_NODE_LEN);
intrfc778net/ipx/af_ipx.cmemcpy((char *)&(intrfc->if_node[IPX_NODE_LEN-dev->addr_len]), dev->dev_addr, dev->addr_len);
intrfc780net/ipx/af_ipx.cipxitf_insert(intrfc);
intrfc784net/ipx/af_ipx.cif (intrfc->if_netnum == 0L) 
intrfc787net/ipx/af_ipx.creturn ipxitf_add_local_route(intrfc);
intrfc795net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc812net/ipx/af_ipx.cintrfc = ipxitf_find_using_phys(dev, dlink_type);
intrfc813net/ipx/af_ipx.cif (intrfc != NULL) {
intrfc814net/ipx/af_ipx.cipxitf_down(intrfc);
intrfc824net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc840net/ipx/af_ipx.cintrfc=(ipx_interface *)kmalloc(sizeof(ipx_interface),GFP_ATOMIC);
intrfc841net/ipx/af_ipx.cif (intrfc!=NULL) {
intrfc842net/ipx/af_ipx.cintrfc->if_dev=dev;
intrfc843net/ipx/af_ipx.cintrfc->if_netnum=0L;
intrfc844net/ipx/af_ipx.cintrfc->if_dlink_type = dlink_type;
intrfc845net/ipx/af_ipx.cintrfc->if_dlink = datalink;
intrfc846net/ipx/af_ipx.cintrfc->if_sklist = NULL;
intrfc847net/ipx/af_ipx.cintrfc->if_internal = 0;
intrfc848net/ipx/af_ipx.cintrfc->if_sknum = IPX_MIN_EPHEMERAL_SOCKET;
intrfc849net/ipx/af_ipx.cintrfc->if_ipx_offset = dev->hard_header_len + 
intrfc851net/ipx/af_ipx.cmemset(intrfc->if_node, 0, IPX_NODE_LEN);
intrfc852net/ipx/af_ipx.cmemcpy((char *)&(intrfc->if_node[IPX_NODE_LEN-dev->addr_len]), 
intrfc854net/ipx/af_ipx.cipxitf_insert(intrfc);
intrfc857net/ipx/af_ipx.creturn intrfc;
intrfc943net/ipx/af_ipx.cipxrtr_add_route(unsigned long network, ipx_interface *intrfc, unsigned char *node)
intrfc958net/ipx/af_ipx.crt->ir_intrfc = intrfc;
intrfc970net/ipx/af_ipx.cipxrtr_del_routes(ipx_interface *intrfc)
intrfc975net/ipx/af_ipx.cif (tmp->ir_intrfc == intrfc) {
intrfc987net/ipx/af_ipx.cipx_interface *intrfc;
intrfc990net/ipx/af_ipx.cintrfc = ipxitf_find_using_net(rd->ipx_router_network);
intrfc991net/ipx/af_ipx.cif (intrfc == NULL)
intrfc994net/ipx/af_ipx.creturn ipxrtr_add_route(rd->ipx_network, intrfc, rd->ipx_router_node);
intrfc1027net/ipx/af_ipx.cipx_interface *intrfc;
intrfc1038net/ipx/af_ipx.cintrfc = ipx_primary_net;
intrfc1046net/ipx/af_ipx.cintrfc = rt->ir_intrfc;
intrfc1049net/ipx/af_ipx.cipx_offset = intrfc->if_ipx_offset;
intrfc1086net/ipx/af_ipx.creturn ipxitf_send(intrfc, skb, (rt && rt->ir_routed) ? 
intrfc1165net/ipx/af_ipx.cipx_device_name(ipx_interface *intrfc)
intrfc1167net/ipx/af_ipx.creturn (intrfc->if_internal ? "Internal" :
intrfc1168net/ipx/af_ipx.c(intrfc->if_dev ? intrfc->if_dev->name : "Unknown"));
intrfc1494net/ipx/af_ipx.cipx_first_free_socketnum(ipx_interface *intrfc)
intrfc1496net/ipx/af_ipx.cunsigned short  socketNum = intrfc->if_sknum;
intrfc1501net/ipx/af_ipx.cwhile (ipxitf_find_socket(intrfc, ntohs(socketNum)) != NULL)
intrfc1507net/ipx/af_ipx.cintrfc->if_sknum = socketNum;
intrfc1514net/ipx/af_ipx.cipx_interface *intrfc;
intrfc1525net/ipx/af_ipx.cintrfc = ipxitf_find_using_net(addr->sipx_network);
intrfc1526net/ipx/af_ipx.cif (intrfc == NULL)
intrfc1530net/ipx/af_ipx.caddr->sipx_port = ipx_first_free_socketnum(intrfc);
intrfc1541net/ipx/af_ipx.cif(ipxitf_find_socket(intrfc, addr->sipx_port)!=NULL) {
intrfc1549net/ipx/af_ipx.cipxitf_insert_socket(intrfc, sk);
intrfc1700net/ipx/af_ipx.cipx_interface  *intrfc;
intrfc1721net/ipx/af_ipx.cintrfc = ipxitf_find_using_phys(dev, pt->type);
intrfc1722net/ipx/af_ipx.cif (intrfc == NULL) {
intrfc1724net/ipx/af_ipx.cintrfc = ipxitf_auto_create(dev, pt->type);
intrfc1727net/ipx/af_ipx.cif (intrfc == NULL) {
intrfc1734net/ipx/af_ipx.creturn ipxitf_rcv(intrfc, skb);