Searched refs:htype (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-current/libexec/bootpd/
H A Dlookup.h5 extern u_char *lookup_hwa(char *hostname, int htype);
H A Dlookup.c29 lookup_hwa(char *hostname, int htype) argument
31 switch (htype) {
50 report(LOG_ERR, "no lookup for HW addr type %d", htype);
H A Dbootpd.h104 htype :1, member in struct:flag
181 htype, /* RFC826 says this should be 16-bits but
180 htype, /* RFC826 says this should be 16-bits but member in struct:host
H A Dreadfile.c135 byte htype;
423 if (hp->flags.htype && hp->flags.haddr) {
426 hashcode = hash_HashFunction(hp->haddr, haddrlength(hp->htype));
429 netname(hp->htype),
430 haddrtoa(hp->haddr, haddrlength(hp->htype)));
882 if (hp->flags.htype == 0) {
883 hp->flags.htype = TRUE;
884 hp->htype = HTYPE_ETHERNET;
886 tmphaddr = prs_haddr(symbol, hp->htype);
889 bcopy(tmphaddr, hp->haddr, haddrlength(hp->htype));
134 byte htype; member in struct:htypename
1729 prs_haddr(char **src, u_int htype) argument
[all...]
H A Ddumptab.c177 if (hp->flags.htype) {
178 int hlen = haddrlength(hp->htype);
179 fprintf(fp, "\\\n\t:ht=%u:", (unsigned) hp->htype);
/freebsd-current/contrib/wpa/src/common/
H A Ddhcp.h44 u8 htype; member in struct:dhcp_data
63 u8 htype; member in struct:bootp_pkt
/freebsd-current/sbin/dhclient/
H A Ddhcp.h61 u_int8_t htype; /* Hardware addr type (see net/if_types.h) */ member in struct:dhcp_packet
86 /* Possible values for hardware type (htype) field... */
H A Dparse.c168 hardware->htype = HTYPE_ETHER;
171 hardware->htype = HTYPE_IEEE802;
174 hardware->htype = HTYPE_FDDI;
H A Dpacket.c155 from->htype = ARPHRD_ETHER;
H A Ddhclient.c1682 client_ident[0] = ip->hw_address.htype;
1698 ip->client->packet.htype = ip->hw_address.htype;
1805 client_ident[0] = ip->hw_address.htype;
1821 ip->client->packet.htype = ip->hw_address.htype;
1905 ip->client->packet.htype = ip->hw_address.htype;
H A Ddhcpd.h118 u_int8_t htype; member in struct:hardware
H A Ddispatch.c117 iface->hw_address.htype = HTYPE_ETHER; /* XXX */
/freebsd-current/contrib/unbound/validator/
H A Dval_secalgo.c1235 nss_setup_key_digest(int algo, SECKEYPublicKey** pubkey, HASH_HashType* htype, argument
1269 *htype = HASH_AlgSHA1;
1291 *htype = HASH_AlgSHA256;
1298 *htype = HASH_AlgSHA512;
1305 *htype = HASH_AlgSHA1;
1325 *htype = HASH_AlgMD5;
1338 *htype = HASH_AlgSHA256;
1348 *htype = HASH_AlgSHA384;
1383 HASH_HashType htype = 0; local
1392 if(!nss_setup_key_digest(algo, &pubkey, &htype, ke
[all...]
/freebsd-current/sys/netpfil/ipfw/
H A Dip_fw_iface.c97 uintptr_t htype; local
103 htype = (uintptr_t)arg;
114 if (htype == 1)
/freebsd-current/sys/sys/
H A Dstats.h459 #define STATS_VSS_HIST(htype, hist_hlpr_info) STATS_VSS(VS_STYPE_HIST, 0, \
460 htype, (vss_hlpr_fn)&stats_vss_hist_hlpr, \
486 #define HIST_VSDSZ2NBKTS(htype, dsz) \
487 ((dsz - sizeof(struct voistatdata_##htype)) / \
488 sizeof(TYPEOF_MEMBER(struct voistatdata_##htype, bkts[0])))
490 #define HIST_NBKTS2VSDSZ(htype, nbkts) (sizeof(struct voistatdata_##htype) + \
491 ((nbkts) * sizeof(TYPEOF_MEMBER_PTR(struct voistatdata_##htype, bkts))))
/freebsd-current/crypto/openssl/ssl/statem/
H A Dstatem_dtls.c1314 int dtls1_set_handshake_header(SSL *s, WPACKET *pkt, int htype) argument
1318 if (htype == SSL3_MT_CHANGE_CIPHER_SPEC) {
1325 dtls1_set_message_header(s, htype, 0, 0, 0);
1338 int dtls1_close_construct_packet(SSL *s, WPACKET *pkt, int htype) argument
1342 if ((htype != SSL3_MT_CHANGE_CIPHER_SPEC && !WPACKET_close(pkt))
1347 if (htype != SSL3_MT_CHANGE_CIPHER_SPEC) {
1354 if (htype != DTLS1_MT_HELLO_VERIFY_REQUEST) {
1356 if (!dtls1_buffer_message(s, htype == SSL3_MT_CHANGE_CIPHER_SPEC
/freebsd-current/sys/dev/iicbus/rtc/
H A Dds13rtc.c481 const char *htype;
487 device_get_unit(dev), "compatible", &htype) != 0)
495 if (strcmp(htype, cdata->ocd_str) == 0)
H A Dnxprtc.c895 const char *htype;
904 device_get_unit(dev), "compatible", &htype) == 0) {
906 if (strcmp(htype, cdata->ocd_str) == 0)
/freebsd-current/contrib/tcpdump/
H A Dprint-atalk.c51 nd_uint16_t htype, ptype; member in struct:aarp
239 if (GET_BE_U_2(ap->htype) == 1 &&
256 ND_PRINT("len %u op %u htype %u ptype %#x halen %u palen %u",
257 length, GET_BE_U_2(ap->op), GET_BE_U_2(ap->htype),
/freebsd-current/crypto/openssl/ssl/
H A Dssl_local.h2099 int (*close_construct_packet) (SSL *s, WPACKET *pkt, int htype);
2104 # define ssl_set_handshake_header(s, pkt, htype) \
2105 s->method->ssl3_enc->set_handshake_header((s), (pkt), (htype))
2106 # define ssl_close_construct_packet(s, pkt, htype) \
2107 s->method->ssl3_enc->close_construct_packet((s), (pkt), (htype))
2525 __owur int ssl3_set_handshake_header(SSL *s, WPACKET *pkt, int htype);
2526 __owur int tls_close_construct_packet(SSL *s, WPACKET *pkt, int htype);
2528 __owur int dtls1_set_handshake_header(SSL *s, WPACKET *pkt, int htype);
2529 __owur int dtls1_close_construct_packet(SSL *s, WPACKET *pkt, int htype);
H A Dt1_trce.c1427 unsigned char htype; local
1431 htype = msg[0];
1435 ssl_trace_str(htype, ssl_handshake_tbl), (int)hlen);
1452 switch (htype) {
/freebsd-current/contrib/wpa/src/drivers/
H A Ddriver_wired.c61 u_int8_t htype; member in struct:dhcp_message
/freebsd-current/sbin/restore/
H A Dtape.c1465 int htype; local
1472 htype = header->c_type;
1473 switch (htype) {
1557 } while (htype == TS_ADDR);
/freebsd-current/contrib/wpa/src/wps/
H A Dwps_upnp_web.c1351 enum httpread_hdr_type htype = http_request_get_type(req); local
1365 htype, inet_ntoa(cli->sin_addr), htons(cli->sin_port));
1367 switch (htype) {
/freebsd-current/contrib/wpa/src/ap/
H A Dfils_hlp.c343 "FILS: HLP request DHCP: op=%u htype=%u hlen=%u hops=%u xid=0x%x",
344 dhcp->op, dhcp->htype, dhcp->hlen, dhcp->hops,

Completed in 162 milliseconds

12