HomeSort by: relevance | last modified time | path
    Searched defs:netnum (Results 1 - 10 of 10) sorted by relevancy

  /src/external/bsd/ntp/dist/libntp/
refnumtoa.c 17 u_int32 netnum; local
25 netnum = SRCADR(num);
26 rclock = clockname((int)((u_long)netnum >> 8) & 0xff);
30 rclock, (u_long)netnum & 0xff);
33 ((u_long)netnum >> 8) & 0xff,
34 (u_long)netnum & 0xff);
netof.c 30 u_int32 netnum; local
42 netnum = SRCADR(netaddr) & IN_CLASSC_NET;
43 SET_ADDR4(netaddr, netnum);
numtoa.c 24 register u_int32 netnum; local
27 netnum = ntohl(num);
30 ((u_long)netnum >> 24) & 0xff,
31 ((u_long)netnum >> 16) & 0xff,
32 ((u_long)netnum >> 8) & 0xff,
33 (u_long)netnum & 0xff);
decodenetnum.c 92 sockaddr_u netnum; local
134 memset(&netnum, 0, sizeof(netnum));
142 if (inet_pton(afam, haddr, &netnum.sa4.sin_addr) <= 0)
144 netnum.sa4.sin_port = htons((unsigned short)port);
149 if (inet_pton(afam, haddr, &netnum.sa6.sin6_addr) <= 0)
151 netnum.sa6.sin6_port = htons((unsigned short)port);
152 netnum.sa6.sin6_scope_id = scope;
163 netnum.sa.sa_family = afam;
164 memcpy(net, &netnum, sizeof(netnum))
    [all...]
  /src/external/bsd/ntp/dist/ntpdc/
ntpdc.h 39 sockaddr_u netnum; member in struct:__anon7469
  /src/external/bsd/dhcpcd/dist/src/
ipv4ll.c 152 struct in_addr netnum; local
171 netnum.s_addr = state->addr->addr.s_addr & state->addr->mask.s_addr;
173 prefix, pf, inet_ntoa(netnum)) == -1)
  /src/external/bsd/am-utils/dist/libamu/
wire.c 320 u_long netnum, masknum = 0; local
349 netnum = inet_addr(netstr); /* not checking return value, b/c -1 (0xffffffff) is valid */
354 if ((al->ip_addr & (maskstr ? masknum : al->ip_mask)) == netnum)
364 * Determine whether a IP address (netnum) is one of the local interfaces,
369 is_interface_local(u_long netnum)
374 if (al->ip_addr == netnum)
  /src/external/bsd/ntp/dist/ntpq/
ntpq.h 77 sockaddr_u netnum; member in union:__anon7474
ntpq-subs.c 2029 sockaddr_u netnum; local
2038 if (getnetnum(chosts[u].name, &netnum, fullname, af)) {
2039 name_or_num = nntohost(&netnum);
2084 sockaddr_u netnum; local
2093 if (getnetnum(chosts[u].name, &netnum, fullname, af)) {
2094 name_or_num = nntohost(&netnum);
2209 sockaddr_u netnum; local
2216 if (getnetnum(chosts[i].name, &netnum, fullname, af)) {
  /src/external/bsd/openldap/dist/libraries/liblber/
decode.c 314 ber_int_t netnum = buf[0] & 0xff; local
317 netnum = (netnum ^ 0x80) - 0x80;
321 netnum = (netnum << 8 ) | buf[i];
324 *num = netnum;

Completed in 57 milliseconds