| /f-stack/freebsd/netinet/libalias/ |
| H A D | alias_ftp.c | 347 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 D | mime.types | 73 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 D | nginx.conf | 23 default_type application/octet-stream;
|
| /f-stack/freebsd/net/ |
| H A D | debugnet.c | 106 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 D | if_llatbl.c | 802 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 D | infiniband.h | 59 uint8_t octet[INFINIBAND_ADDR_LEN]; member
|
| H A D | debugnet_inet.c | 350 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 D | if_edsc.c | 160 ether_ifattach(ifp, eaddr.octet); in edsc_clone_create()
|
| H A D | if_tuntap.c | 968 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 D | ethernet.h | 70 u_char octet[ETHER_ADDR_LEN]; member
|
| H A D | if_ethersubr.c | 1461 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 D | if_bridge.c | 715 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 D | iflib.c | 253 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 D | eui64.h | 49 u_char octet[EUI64_LEN]; member
|
| /f-stack/dpdk/doc/guides/platform/ |
| H A D | octeontx2.rst | 357 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 D | ngx_inet.c | 24 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 D | ngx_resolver.c | 3058 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 D | if_genet.c | 345 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 D | ifbridge.c | 228 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 D | ethernet.h | 70 u_char octet[ETHER_ADDR_LEN]; member
|
| /f-stack/freebsd/netgraph/ |
| H A D | ng_eiface.c | 437 ether_ifattach(ifp, eaddr.octet); in ng_eiface_constructor()
|
| /f-stack/app/nginx-1.16.1/src/http/v2/ |
| H A D | ngx_http_v2.c | 2514 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 D | tap.rst | 35 The MAC address will have a fixed value with the last octet incrementing by one
|
| /f-stack/freebsd/contrib/zlib/doc/ |
| H A D | rfc1950.txt | 144 byte: 8 bits stored or transmitted as a unit (same as an octet).
|
| H A D | rfc1952.txt | 154 byte: 8 bits stored or transmitted as a unit (same as an octet).
|