Searched refs:af (Results 101 - 125 of 288) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-ldp.c38 #include "af.h"
253 u_short tlv_type,tlv_len,tlv_tlen,af,ft_flags; local
303 af = EXTRACT_16BITS(tptr);
307 tok2str(af_values, "Unknown (%u)", af));
308 switch (af) {
357 af = EXTRACT_16BITS(tptr);
360 if (af == AFNUM_INET) {
372 else if (af == AFNUM_INET6) {
385 printf(": Address family %u prefix", af);
H A Dprint-enc.c77 switch (hdr->af) {
H A Dprint-pim.c524 int af; local
533 af = AF_INET;
538 af = AF_INET6;
551 af = AF_INET;
555 af = AF_INET6;
570 if (af == AF_INET) {
575 else if (af == AF_INET6) {
584 if (af == AF_INET) {
592 else if (af == AF_INET6) {
/macosx-10.10.1/xnu-2782.1.97/libkern/net/
H A Dinet_pton.c38 * inet_pton(af, src, dst)
49 inet_pton(int af, const char *src, void *dst) argument
51 switch (af) {
H A Dinet_ntop.c37 * inet_ntop(af, src, dst, size)
45 inet_ntop(int af, const void *src, char *dst, socklen_t size) argument
47 switch (af) {
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet6/
H A Desp_output.c234 esp_output(m, nexthdrp, md, af, sav)
238 int af;
256 int udp_encapsulate = (sav->flags & SADB_X_EXT_NATT && af == AF_INET &&
260 switch (af) {
274 ipseclog((LOG_ERR, "esp_output: unsupported af %d\n", af));
281 switch (af) {
371 switch (af) {
477 switch (af) {
552 switch (af) {
[all...]
/macosx-10.10.1/vim-55/src/po/
H A DMake_mvc.mak10 af \
37 af.mo \
H A DMake_ming.mak14 af \
41 af.mo \
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dif_pflog.h79 sa_family_t af; member in struct:pfloghdr
H A Dif_pflog.c284 pflog_packet(struct pfi_kif *kif, struct mbuf *m, sa_family_t af, u_int8_t dir, argument
304 hdr.af = af;
333 if (af == AF_INET && dir == PF_OUT) {
/macosx-10.10.1/ruby-106/ruby/ext/socket/
H A Drubysocket.h115 # define IS_IP_FAMILY(af) ((af) == AF_INET || (af) == AF_INET6)
117 # define IS_IP_FAMILY(af) ((af) == AF_INET)
/macosx-10.10.1/ruby-106/ruby/test/open-uri/
H A Dtest_ssl.rb214 e2:9e:35:55:e8:e8:af:be:c8:7d:bb:c2:d4:aa:c1:
235 f6:5a:11:b9:d4:f7:e3:80:bb:b0:ce:76:1a:56:22:af:e2:4a:
266 e2:9e:35:55:e8:e8:af:be:c8:7d:bb:c2:d4:aa:c1:
271 00:af:3a:ec:17:0a:f5:d9:07:d2:d3:4c:15:c5:3b:
287 00:ce:57:5e:31:e9:c9:a8:5b:1f:55:af:67:e2:49:
288 2a:af:90:b6:02:c0:32:2f:ca:ae:1e:de:47:81:73:
290 26:20:46:ae:5a:65:6e:6d:af:68:4c:8d:e8:3c:f3:
305 45:50:47:66:56:e9:21:d9:40:0e:af:3f:f2:05:77:
308 2d:af:d5:7d:75:e9:70:f0:2d:21:e3:b9:cf:4d:9a:
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/tools/runidn/
H A Dresolver.c563 ENTRY(gethostbyname2)(const char *name, int af) { argument
570 return (REAL(gethostbyname2)(name, af));
572 TRACE(("gethostbyname2(name=%s)\n", idn__debug_xstring(name, 60), af));
581 hp = copy_decode_hostent_static(REAL(gethostbyname2)(name, af),
672 ENTRY(gethostbyname2_r)(const char *name, int af, struct hostent *result, argument
685 return (REAL(gethostbyname2_r)(name, af, result, buffer,
710 n = REAL(gethostbyname2_r)(name, af, &he, data, datalen, rp, errp);
881 ENTRY(getipnodebyname)(const char *name, int af, int flags, int *errp) { argument
887 return (REAL(getipnodebyname)(name, af, flags, errp));
889 TRACE(("getipnodebyname(name=%s)\n", idn__debug_xstring(name, 60), af));
914 getipnodebyaddr(const void *src, size_t len, int af, int *errp) argument
[all...]
/macosx-10.10.1/lsof-53/lsof/
H A Dproc.c164 Lf->li[0].af = Lf->li[1].af = 0;
430 ent_inaddr(la, lp, fa, fp, af)
437 int af; /* address family -- e.g, AF_INET,
443 Lf->li[0].af = af;
446 if (af == AF_INET6)
454 Lf->li[0].af = 0;
456 Lf->li[1].af = af;
[all...]
H A Dprint.c56 int af; /* address family -- e.g., AF_INET member in struct:hostcache
364 gethostnm(ia, af)
366 int af; /* address family -- e.g., AF_INET
383 if (af == AF_INET6)
388 if (af != hc[i].af)
403 he = gethostbyaddr((char *)ia, al, af);
407 if (af == AF_INET6) {
414 if (!inet_ntop(af, ia, hbuf + 1, sizeof(hbuf) - 3)) {
424 if (af
[all...]
/macosx-10.10.1/network_cmds-457/route.tproj/
H A Droute.c115 int forcehost, forcenet, doflush, nflag, af, qflag, tflag, keyword(); variable
240 af = AF_INET;
244 af = AF_INET6;
248 af = AF_LINK;
277 if (af) {
280 if (sa->sa_family != af)
524 char *cp = line + snprintf(line, sizeof(line), "af %d:", sa->sa_family);
598 af = AF_LINK;
602 af = AF_INET;
607 af
[all...]
/macosx-10.10.1/Libc-1044.1.2/net/
H A Dinet_pton.c74 * inet_pton(af, src, dst)
85 inet_pton(int af, const char *src, void *dst) argument
91 switch (af)
/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dcache_module.c212 cache_host_byname(si_mod_t *si, const char *name, int af, const char *ignored, uint32_t *err) argument
219 if (af == AF_INET) item = cache_fetch_item(si, CATEGORY_HOST_IPV4, name, af, SEL_NAME);
220 else item = cache_fetch_item(si, CATEGORY_HOST_IPV6, name, af, SEL_NAME);
228 cache_host_byaddr(si_mod_t *si, const void *addr, int af, const char *ignored, uint32_t *err) argument
235 if (af == AF_INET) item = cache_fetch_item(si, CATEGORY_HOST_IPV4, addr, af, SEL_NUMBER);
236 else item = cache_fetch_item(si, CATEGORY_HOST_IPV6, addr, af, SEL_NUMBER);
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dinet_ntop.c52 * inet_ntop(af, src, dst, size)
60 inet_ntop(int af, const void *src, char *dst, socklen_t size) argument
62 switch (af) {
/macosx-10.10.1/apr-32/apr/apr/network_io/unix/
H A Dinet_ntop.c66 * inet_ntop(af, src, dst, size)
74 apr_inet_ntop(int af, const void *src, char *dst, apr_size_t size) argument
76 switch (af) {
/macosx-10.10.1/bind9-45.101/bind9/lib/lwres/
H A Dgethost.c70 * lwres_gethostbyname2() looks for an address of protocol family af:
182 lwres_gethostbyname2(const char *name, int af) { argument
186 he = lwres_getipnodebyname(name, af, 0, &lwres_h_errno);
/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dinet_ntop.c47 * inet_ntop(af, src, dst, size)
55 inet_ntop(int af, const void *src, char *dst, socklen_t size) argument
58 switch (af) {
H A Dinet_pton.c47 * inet_pton(af, src, dst)
58 inet_pton(int af, const char *src, void *dst) argument
61 switch (af) {
/macosx-10.10.1/tcpdump-61/tcpdump/missing/
H A Dinet_ntop.c206 inet_ntop(int af, const void *src, char *dst, size_t size) argument
208 switch (af) {
/macosx-10.10.1/libresolv-57/
H A Dres_private.h64 int af; member in struct:__res_state_ext::sort_list

Completed in 280 milliseconds

1234567891011>>