Home
last modified time | relevance | path

Searched refs:octet (Results 1 – 25 of 29) sorted by relevance

12

/f-stack/freebsd/netinet/libalias/
H A Dalias_ftp.c347 u_int8_t octet; in ParseFtpPortCommand() local
375 octet = ch - '0'; in ParseFtpPortCommand()
385 octet = 10 * octet + ch - '0'; in ParseFtpPortCommand()
395 octet = 10 * octet + ch - '0'; in ParseFtpPortCommand()
420 u_int8_t octet; in ParseFtpEprtCommand() local
460 octet = ch - '0'; in ParseFtpEprtCommand()
470 octet = 10 * octet + ch - '0'; in ParseFtpEprtCommand()
510 u_int8_t octet; in ParseFtp227Reply() local
538 octet = ch - '0'; in ParseFtp227Reply()
548 octet = 10 * octet + ch - '0'; in ParseFtp227Reply()
[all …]
/f-stack/app/nginx-1.16.1/conf/
H A Dmime.types73 application/octet-stream bin exe dll;
74 application/octet-stream deb;
75 application/octet-stream dmg;
76 application/octet-stream iso img;
77 application/octet-stream msi msp msm;
H A Dnginx.conf23 default_type application/octet-stream;
/f-stack/freebsd/net/
H A Ddebugnet.c106 return (pcb->dp_gw_mac.octet); in debugnet_get_gw_mac()
149 memcpy(eh->ether_dhost, dst.octet, ETHER_ADDR_LEN); in debugnet_ether_output()
884 unsigned octet; in dn_parse_optarg_ipv4() local
888 for (octet = 0; octet < 4; octet++) { in dn_parse_optarg_ipv4()
892 __func__, opt->printname, octet, t); in dn_parse_optarg_ipv4()
903 opt->printname, octet, (intmax_t)db_tok_number); in dn_parse_optarg_ipv4()
910 if (octet < 3) { in dn_parse_optarg_ipv4()
914 " %d\n", __func__, opt->printname, octet, in dn_parse_optarg_ipv4()
H A Dif_llatbl.c802 uint8_t octet[6]; in llatbl_lle_show() local
820 bcopy(lle->ll_addr, octet, sizeof(octet)); in llatbl_lle_show()
822 octet[0], octet[1], octet[2], octet[3], octet[4], octet[5]); in llatbl_lle_show()
H A Dinfiniband.h59 uint8_t octet[INFINIBAND_ADDR_LEN]; member
H A Ddebugnet_inet.c350 memcpy(pcb->dp_gw_mac.octet, ar_sha(ah), in debugnet_handle_arp()
354 pcb->dp_gw_mac.octet, ":"); in debugnet_handle_arp()
381 memcpy(dst.octet, ar_tha(ah), ETHER_ADDR_LEN); in debugnet_handle_arp()
H A Dif_edsc.c160 ether_ifattach(ifp, eaddr.octet); in edsc_clone_create()
H A Dif_tuntap.c968 ether_ifattach(ifp, eaddr.octet); in tuncreate()
1076 bcopy(IF_LLADDR(ifp), tp->tun_ether.octet, in tunopen()
1077 sizeof(tp->tun_ether.octet)); in tunopen()
1493 bcopy(&tp->tun_ether.octet, data, in tunioctl()
1494 sizeof(tp->tun_ether.octet)); in tunioctl()
1500 bcopy(data, &tp->tun_ether.octet, in tunioctl()
1501 sizeof(tp->tun_ether.octet)); in tunioctl()
H A Dethernet.h70 u_char octet[ETHER_ADDR_LEN]; member
H A Dif_ethersubr.c1461 hwaddr->octet[0] = 0x02; in ether_gen_addr()
1474 hwaddr->octet[i] = addr >> ((ETHER_ADDR_LEN - i - 1) * 8) & in ether_gen_addr()
H A Dif_bridge.c715 ether_ifattach(ifp, sc->sc_defaddr.octet); in bridge_clone_create()
1236 !memcmp(IF_LLADDR(sc->sc_ifp), sc->sc_defaddr.octet, ETHER_ADDR_LEN)) { in bridge_ioctl_add()
H A Diflib.c253 bcopy(mac, ctx->ifc_mac.octet, ETHER_ADDR_LEN); in iflib_set_mac()
4904 ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac.octet); in iflib_device_register()
5012 ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac.octet); in iflib_pseudo_register()
5111 ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac.octet); in iflib_pseudo_register()
/f-stack/freebsd/sys/
H A Deui64.h49 u_char octet[EUI64_LEN]; member
/f-stack/dpdk/doc/guides/platform/
H A Docteontx2.rst357 Packets sent with an octet count < 64: 0
358 Packets sent with an octet count == 64: 0
359 Packets sent with an octet count of 65127: 0
360 Packets sent with an octet count of 128-255: 0
361 Packets sent with an octet count of 256-511: 0
362 Packets sent with an octet count of 512-1023: 0
363 Packets sent with an octet count of 1024-1518: 0
364 Packets sent with an octet count of > 1518: 0
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_inet.c24 ngx_uint_t octet, n; in ngx_inet_addr() local
27 octet = 0; in ngx_inet_addr()
34 octet = octet * 10 + (c - '0'); in ngx_inet_addr()
36 if (octet > 255) { in ngx_inet_addr()
44 addr = (addr << 8) + octet; in ngx_inet_addr()
45 octet = 0; in ngx_inet_addr()
54 addr = (addr << 8) + octet; in ngx_inet_addr()
H A Dngx_resolver.c3058 ngx_int_t octet; in ngx_resolver_process_ptr() local
3089 octet = ngx_atoi(&buf[i], len); in ngx_resolver_process_ptr()
3090 if (octet == NGX_ERROR || octet > 255) { in ngx_resolver_process_ptr()
3094 addr += octet << mask; in ngx_resolver_process_ptr()
3117 for (octet = 15; octet >= 0; octet--) { in ngx_resolver_process_ptr()
3127 addr6.s6_addr[octet] = (u_char) digit; in ngx_resolver_process_ptr()
3138 addr6.s6_addr[octet] += (u_char) (digit * 16); in ngx_resolver_process_ptr()
/f-stack/freebsd/arm64/broadcom/genet/
H A Dif_genet.c345 ether_ifattach(sc->ifp, eaddr.octet); in gen_attach()
414 if (OF_getprop(node, "mac-address", eaddr->octet, in gen_get_eaddr()
416 OF_getprop(node, "local-mac-address", eaddr->octet, in gen_get_eaddr()
418 OF_getprop(node, "address", eaddr->octet, ETHER_ADDR_LEN) != -1) in gen_get_eaddr()
436 eaddr->octet[0] = maclo & 0xff; in gen_get_eaddr()
437 eaddr->octet[1] = (maclo >> 8) & 0xff; in gen_get_eaddr()
438 eaddr->octet[2] = (maclo >> 16) & 0xff; in gen_get_eaddr()
439 eaddr->octet[3] = (maclo >> 24) & 0xff; in gen_get_eaddr()
440 eaddr->octet[4] = machi & 0xff; in gen_get_eaddr()
441 eaddr->octet[5] = (machi >> 8) & 0xff; in gen_get_eaddr()
/f-stack/tools/ifconfig/
H A Difbridge.c228 memcpy(ea.octet, ifba->ifba_dst, in bridge_addresses()
229 sizeof(ea.octet)); in bridge_addresses()
466 memcpy(req.ifba_dst, ea->octet, sizeof(req.ifba_dst)); in setbridge_static()
486 memcpy(req.ifba_dst, ea->octet, sizeof(req.ifba_dst)); in setbridge_deladdr()
/f-stack/tools/compat/include/net/
H A Dethernet.h70 u_char octet[ETHER_ADDR_LEN]; member
/f-stack/freebsd/netgraph/
H A Dng_eiface.c437 ether_ifattach(ifp, eaddr.octet); in ng_eiface_constructor()
/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2.c2514 ngx_uint_t value, octet, shift; in ngx_http_v2_parse_int() local
2537 octet = *p++; in ngx_http_v2_parse_int()
2539 value += (octet & 0x7f) << shift; in ngx_http_v2_parse_int()
2541 if (octet < 128) { in ngx_http_v2_parse_int()
/f-stack/dpdk/doc/guides/nics/
H A Dtap.rst35 The MAC address will have a fixed value with the last octet incrementing by one
/f-stack/freebsd/contrib/zlib/doc/
H A Drfc1950.txt144 byte: 8 bits stored or transmitted as a unit (same as an octet).
H A Drfc1952.txt154 byte: 8 bits stored or transmitted as a unit (same as an octet).

12