Searched refs:net (Results 1 - 25 of 2137) sorted by relevance

1234567891011>>

/netbsd-current/sys/rump/librump/rumpnet/
H A Drump_net_private.h6 #include <rump-sys/net.h>
/netbsd-current/external/bsd/ntp/dist/lib/isc/win32/include/isc/
H A Dnetdb.h54 #include <isc/net.h>
/netbsd-current/external/bsd/libbind/dist/port/linux/include/net/
H A Droute.h4 # include_next <net/route.h>
/netbsd-current/external/mpl/bind/dist/tests/irs/testdata/
H A Dsearch.conf12 search example.com example.net
H A Doptions-bad-ndots.conf12 search example.com example.net
/netbsd-current/external/bsd/libbind/dist/inet/
H A Dinet_makeaddr.c53 inet_makeaddr(net, host)
54 u_long net, host;
58 if (net < 128U)
59 a.s_addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST);
60 else if (net < 65536U)
61 a.s_addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST);
62 else if (net < 16777216L)
63 a.s_addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST);
65 a.s_addr = net | host;
/netbsd-current/crypto/dist/ipsec-tools/src/include-glibc/netinet/
H A Dipsec.h3 #include <net/pfkeyv2.h>
/netbsd-current/lib/libc/arch/alpha/net/
H A DMakefile.inc7 LSRCS.alpha.net= Lint_htonl.c Lint_htons.c Lint_ntohl.c Lint_ntohs.c
8 LSRCS+= ${LSRCS.alpha.net}
9 DPSRCS+= ${LSRCS.alpha.net}
10 CLEANFILES+= ${LSRCS.alpha.net}
/netbsd-current/lib/libc/arch/i386/net/
H A DMakefile.inc7 LSRCS.i386.net= Lint_htonl.c Lint_htons.c Lint_ntohl.c Lint_ntohs.c
8 LSRCS+= ${LSRCS.i386.net}
9 DPSRCS+= ${LSRCS.i386.net}
10 CLEANFILES+= ${LSRCS.i386.net}
/netbsd-current/lib/libc/arch/mips/net/
H A DMakefile.inc7 LSRCS.mips.net= Lint_htonl.c Lint_htons.c Lint_ntohl.c Lint_ntohs.c
8 LSRCS+= ${LSRCS.mips.net}
9 DPSRCS+= ${LSRCS.mips.net}
10 CLEANFILES+= ${LSRCS.mips.net}
/netbsd-current/lib/libc/arch/x86_64/net/
H A DMakefile.inc7 LSRCS.x86_64.net=Lint_htonl.c Lint_htons.c Lint_ntohl.c Lint_ntohs.c
8 LSRCS+= ${LSRCS.x86_64.net}
9 DPSRCS+= ${LSRCS.x86_64.net}
10 CLEANFILES+= ${LSRCS.x86_64.net}
/netbsd-current/sys/netinet6/
H A Din6_l2tp.h32 #include <net/if.h>
33 #include <net/if_l2tp.h>
/netbsd-current/external/mpl/bind/dist/lib/isc/include/isc/
H A Dnetdb.h50 #include <isc/net.h>
/netbsd-current/distrib/syspkg/sets/base/base-net-shlib/
H A DMakefile3 PKGBASE=base-net-shlib
/netbsd-current/distrib/syspkg/sets/etc/etc-net-etc/
H A DMakefile3 PKGBASE=etc-net-etc
/netbsd-current/distrib/syspkg/sets/etc/etc-net-rc/
H A DMakefile3 PKGBASE=etc-net-rc
/netbsd-current/distrib/syspkg/sets/man/man-net-man/
H A DMakefile3 PKGBASE=man-net-man
/netbsd-current/share/examples/amd/
H A Damd.conf4 # Goes into /etc, while cd & net go into /etc/amd (or change paths below).
14 [ /net ]
15 map_name = /etc/amd/net
/netbsd-current/sys/compat/net/
H A Droute_70.h35 #include <net/route.h>
H A Droute_50.h35 #include <net/route.h>
/netbsd-current/external/bsd/ntp/dist/lib/isc/unix/include/isc/
H A Dnetdb.h55 #include <isc/net.h>
/netbsd-current/distrib/syspkg/sets/man/man-net-catman/
H A DMakefile3 PKGBASE=man-net-catman
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/
H A Dnetdb.h51 #include <isc/net.h>
/netbsd-current/external/bsd/ntp/dist/ntpsnmpd/
H A Dntp_snmp.h4 * ntp_snmp.h -- common net-snmp header includes and workaround
6 * net-snmp and NTP.
12 * net-snmp/net-snmp-config.h.
15 #include <net-snmp/net-snmp-config.h>
16 #include <net-snmp/net-snmp-includes.h>
17 #include <net-snmp/agent/net
[all...]
/netbsd-current/lib/libc/inet/
H A Dinet_makeaddr.c55 inet_makeaddr(in_addr_t net, in_addr_t host)
60 if (net < 128)
61 addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST);
62 else if (net < 65536)
63 addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST);
64 else if (net < 16777216L)
65 addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST);
67 addr = net | host;

Completed in 414 milliseconds

1234567891011>>