Searched refs:ipx (Results 1 - 25 of 59) sorted by relevance

123

/freebsd-9.3-release/lib/libipx/
H A DMakefile3 LIB= ipx
6 MAN= ipx.3
7 MLINKS+=ipx.3 ipx_addr.3 ipx.3 ipx_ntoa.3
H A Dipx_ntoa.c39 #include <netipx/ipx.h>
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-ipx.c29 "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.42 2005-05-06 08:26:44 guy Exp $";
44 #include "ipx.h"
59 const struct ipxHdr *ipx = (const struct ipxHdr *)p; local
64 TCHECK(ipx->srcSkt);
66 ipxaddr_string(EXTRACT_32BITS(ipx->srcNet), ipx->srcNode),
67 EXTRACT_16BITS(&ipx->srcSkt));
70 ipxaddr_string(EXTRACT_32BITS(ipx->dstNet), ipx->dstNode),
71 EXTRACT_16BITS(&ipx
95 ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length) argument
135 ipx_sap_print(const u_short *ipx, u_int length) argument
187 ipx_rip_print(const u_short *ipx, u_int length) argument
[all...]
H A Dprint-netbios.c74 ipxaddr_string(EXTRACT_32BITS(ipx->srcNet), ipx->srcNode),
75 EXTRACT_16BITS(ipx->srcSkt));
78 ipxaddr_string(EXTRACT_32BITS(ipx->dstNet), ipx->dstNode),
79 EXTRACT_16BITS(ipx->dstSkt));
81 if ((u_char *)(ipx + 1) > snapend) {
82 printf(" [|ipx]");
86 /* take length from ipx header */
87 length = EXTRACT_16BITS(&ipx
[all...]
/freebsd-9.3-release/sys/netipx/
H A Dipx_input.c83 #include <netipx/ipx.h>
91 &ipxcksum, 0, "Compute ipx checksum");
99 &ipxforwarding, 0, "Enable ipx forwarding");
103 &ipxnetbios, 0, "Propagate netbios over ipx");
129 .nh_name = "ipx",
170 struct ipx *ipx; local
186 if ((m->m_flags & M_EXT || m->m_len < sizeof(struct ipx)) &&
187 (m = m_pullup(m, sizeof(struct ipx))) == NULL) {
206 ipx
351 struct ipx *ipx = mtod(m, struct ipx *); local
[all...]
H A Dipx_pcb.h142 #define IPX_LOCK_INIT(ipx) mtx_init(&(ipx)->ipxp_mtx, "ipx_mtx", NULL, \
144 #define IPX_LOCK_DESTROY(ipx) mtx_destroy(&(ipx)->ipxp_mtx)
145 #define IPX_LOCK(ipx) mtx_lock(&(ipx)->ipxp_mtx)
146 #define IPX_UNLOCK(ipx) mtx_unlock(&(ipx)->ipxp_mtx)
147 #define IPX_LOCK_ASSERT(ipx) mtx_assert(&(ipx)
[all...]
H A Dipx_cksum.c69 #include <netipx/ipx.h>
82 struct ipx *ipx; local
88 ipx = mtod(m, struct ipx*);
89 oldtc = ipx->ipx_tc;
90 ipx->ipx_tc = 0;
91 w = (u_char *)&ipx->ipx_len;
132 ipx->ipx_tc = oldtc;
H A Dipx_outputfl.c73 #include <netipx/ipx.h>
80 struct ipx *ipx = mtod(m0, struct ipx *); local
97 dst->sipx_addr = ipx->ipx_dna;
107 ia = ipx_iaonnetof(&ipx->ipx_dna);
153 if (htons(ipx->ipx_len) <= ifp->if_mtu) {
175 * that have ipx configured and isn't in the list yet.
180 struct ipx *ipx; local
[all...]
H A Dipx_proto.c77 #include <netipx/ipx.h>
154 DOMAIN_SET(ipx); variable
155 SYSCTL_NODE(_net, PF_IPX, ipx, CTLFLAG_RW, 0,
158 SYSCTL_NODE(_net_ipx, IPXPROTO_RAW, ipx, CTLFLAG_RW, 0, "IPX");
H A Dipx_usrreq.c88 #include <netipx/ipx.h>
157 struct ipx *ipx = mtod(m, struct ipx *); local
169 ipx_ipx.sipx_addr = ipx->ipx_sna;
172 if (ipx_neteqnn(ipx->ipx_sna.x_net, ipx_zeronet) && ifp != NULL) {
184 ipxp->ipxp_rpt = ipx->ipx_pt;
186 m->m_len -= sizeof(struct ipx);
187 m->m_pkthdr.len -= sizeof(struct ipx);
188 m->m_data += sizeof(struct ipx);
234 struct ipx *ipx; local
[all...]
H A Dspx.h90 struct ipx si_i;
133 struct ipx s_ipx;
H A Dspx_debug.c77 #include <netipx/ipx.h>
174 ((struct ipx *)si)->ipx_len);
/freebsd-9.3-release/usr.sbin/IPXrouted/
H A Dtrace.h91 &packet[sizeof(struct ipx)], size, \
96 &packet[sizeof(struct ipx)], size); \
103 &packet[sizeof(struct ipx)], \
108 &packet[sizeof(struct ipx)], size); \
116 &packet[sizeof(struct ipx)], \
121 &packet[sizeof(struct ipx)], size); \
H A Dmain.c91 struct rip *msg = (struct rip *) &packet[sizeof (struct ipx)];
93 (struct sap_packet *) &packet[sizeof (struct ipx)];
281 struct ipx *ipxdp = (struct ipx *)packet;
306 cc -= sizeof (struct ipx);
342 struct ipx ipxdp;
H A Ddefs.h45 #include <netipx/ipx.h>
H A Dsap.h53 struct ipx_addr ipx; member in struct:sap_info
H A Dtrace.c297 ipxdp_ntoa(&sap->sap.ipx),
298 ntohs(sap->sap.ipx.x_port),
430 ipxdp_ntoa(&n->ipx),
431 ntohs(n->ipx.x_port),
457 ipxdp_ntoa(&sap->sap.ipx),
458 ntohs(sap->sap.ipx.x_port),
/freebsd-9.3-release/lib/libncp/
H A DMakefile12 ncpl_rpc.c ncpl_crypt.c ipx.c sap.c
H A Dipx.c47 #include <netipx/ipx.h>
92 ipx_fprint_addr(FILE * file, struct ipx_addr *ipx) argument
94 ipx_fprint_network(file, ipx_netlong(*ipx));
96 ipx_fprint_node(file, ipx->x_host);
98 ipx_fprint_port(file, ipx->x_port);
120 ipx_print_addr(struct ipx_addr *ipx) argument
122 ipx_fprint_addr(stdout, ipx);
H A Dipxsap.h56 struct ipx_addr ipx; member in struct:sap_entry
/freebsd-9.3-release/etc/rc.d/
H A Drouting36 inet|inet6|ipx|atm)
44 for _a in inet inet6 ipx atm; do
65 inet|inet6|ipx|atm)
77 for _a in inet inet6 ipx atm; do
392 ropts_init ipx
394 ${SYSCTL} net.ipx.ipx.ipxforwarding=1 > /dev/null
396 ${SYSCTL} net.ipx.ipx.ipxforwarding=0 > /dev/null
/freebsd-9.3-release/tools/regression/netipx/ipxsocket/
H A Dipxsocket.c39 #include <netipx/ipx.h>
/freebsd-9.3-release/sys/netsmb/
H A Dnetbios.h39 #include <netipx/ipx.h>
/freebsd-9.3-release/tools/regression/netipx/spxabort/
H A Dspxabort.c42 #include <netipx/ipx.h>
/freebsd-9.3-release/usr.bin/netstat/
H A DMakefile42 SRCS+= ipx.c

Completed in 100 milliseconds

123