Home
last modified time | relevance | path

Searched defs:pkt (Results 1 – 25 of 402) sorted by relevance

12345678910>>...17

/freebsd/crypto/openssl/include/internal/
H A Dpacket.h30 static ossl_inline void packet_forward(PACKET *pkt, size_t len) in packet_forward()
39 static ossl_inline size_t PACKET_remaining(const PACKET *pkt) in PACKET_remaining()
50 static ossl_inline const unsigned char *PACKET_end(const PACKET *pkt) in PACKET_end()
59 static ossl_inline const unsigned char *PACKET_data(const PACKET *pkt) in PACKET_data()
69 __owur static ossl_inline int PACKET_buf_init(PACKET *pkt, in PACKET_buf_init()
83 static ossl_inline void PACKET_null_init(PACKET *pkt) in PACKET_null_init()
94 __owur static ossl_inline int PACKET_equal(const PACKET *pkt, const void *ptr, in PACKET_equal()
107 __owur static ossl_inline int PACKET_peek_sub_packet(const PACKET *pkt, in PACKET_peek_sub_packet()
121 __owur static ossl_inline int PACKET_get_sub_packet(PACKET *pkt, in PACKET_get_sub_packet()
136 __owur static ossl_inline int PACKET_peek_net_2(const PACKET *pkt, in PACKET_peek_net_2()
[all …]
H A Dpacket_quic.h22 __owur static ossl_inline int PACKET_get_quic_vlint(PACKET *pkt, in PACKET_get_quic_vlint()
46 __owur static ossl_inline int PACKET_peek_quic_vlint_ex(PACKET *pkt, in PACKET_peek_quic_vlint_ex()
68 __owur static ossl_inline int PACKET_peek_quic_vlint(PACKET *pkt, in PACKET_peek_quic_vlint()
77 __owur static ossl_inline int PACKET_skip_quic_vlint(PACKET *pkt) in PACKET_skip_quic_vlint()
100 __owur static ossl_inline int PACKET_get_quic_length_prefixed(PACKET *pkt, in PACKET_get_quic_length_prefixed()
/freebsd/crypto/openssl/ssl/quic/
H A Dquic_wire.c36 int ossl_quic_wire_encode_padding(WPACKET *pkt, size_t num_bytes) in ossl_quic_wire_encode_padding()
45 static int encode_frame_hdr(WPACKET *pkt, uint64_t frame_type) in encode_frame_hdr()
50 int ossl_quic_wire_encode_frame_ping(WPACKET *pkt) in ossl_quic_wire_encode_frame_ping()
55 int ossl_quic_wire_encode_frame_ack(WPACKET *pkt, in ossl_quic_wire_encode_frame_ack()
103 int ossl_quic_wire_encode_frame_reset_stream(WPACKET *pkt, in ossl_quic_wire_encode_frame_reset_stream()
115 int ossl_quic_wire_encode_frame_stop_sending(WPACKET *pkt, in ossl_quic_wire_encode_frame_stop_sending()
126 int ossl_quic_wire_encode_frame_crypto_hdr(WPACKET *pkt, in ossl_quic_wire_encode_frame_crypto_hdr()
150 void *ossl_quic_wire_encode_frame_crypto(WPACKET *pkt, in ossl_quic_wire_encode_frame_crypto()
166 int ossl_quic_wire_encode_frame_new_token(WPACKET *pkt, in ossl_quic_wire_encode_frame_new_token()
178 int ossl_quic_wire_encode_frame_stream_hdr(WPACKET *pkt, in ossl_quic_wire_encode_frame_stream_hdr()
[all …]
H A Dquic_trace.c81 static int frame_ack(BIO *bio, PACKET *pkt) in frame_ack()
127 static int frame_reset_stream(BIO *bio, PACKET *pkt) in frame_reset_stream()
144 static int frame_stop_sending(BIO *bio, PACKET *pkt) in frame_stop_sending()
159 static int frame_crypto(BIO *bio, PACKET *pkt) in frame_crypto()
172 static int frame_new_token(BIO *bio, PACKET *pkt) in frame_new_token()
187 static int frame_stream(BIO *bio, PACKET *pkt, uint64_t frame_type) in frame_stream()
249 static int frame_max_data(BIO *bio, PACKET *pkt) in frame_max_data()
261 static int frame_max_stream_data(BIO *bio, PACKET *pkt) in frame_max_stream_data()
276 static int frame_max_streams(BIO *bio, PACKET *pkt) in frame_max_streams()
288 static int frame_data_blocked(BIO *bio, PACKET *pkt) in frame_data_blocked()
[all …]
H A Dquic_rx_depack.c37 static int depack_do_frame_padding(PACKET *pkt) in depack_do_frame_padding()
44 static int depack_do_frame_ping(PACKET *pkt, QUIC_CHANNEL *ch, in depack_do_frame_ping()
61 static int depack_do_frame_ack(PACKET *pkt, QUIC_CHANNEL *ch, in depack_do_frame_ack()
141 static int depack_do_frame_reset_stream(PACKET *pkt, in depack_do_frame_reset_stream()
217 static int depack_do_frame_stop_sending(PACKET *pkt, in depack_do_frame_stop_sending()
262 static int depack_do_frame_crypto(PACKET *pkt, QUIC_CHANNEL *ch, in depack_do_frame_crypto()
326 static int depack_do_frame_new_token(PACKET *pkt, QUIC_CHANNEL *ch, in depack_do_frame_new_token()
497 static int depack_do_frame_stream(PACKET *pkt, QUIC_CHANNEL *ch, in depack_do_frame_stream()
672 static int depack_do_frame_max_data(PACKET *pkt, QUIC_CHANNEL *ch, in depack_do_frame_max_data()
690 static int depack_do_frame_max_stream_data(PACKET *pkt, in depack_do_frame_max_stream_data()
[all …]
H A Dquic_fifd.c28 QUIC_TXPIM_PKT *pkt, in ossl_quic_fifd_init()
69 QUIC_TXPIM_PKT *pkt = arg; in on_acked() local
125 QUIC_TXPIM_PKT *pkt = arg; in on_lost() local
234 QUIC_TXPIM_PKT *pkt = arg; in on_discarded() local
252 int ossl_quic_fifd_pkt_commit(QUIC_FIFD *fifd, QUIC_TXPIM_PKT *pkt) in ossl_quic_fifd_pkt_commit()
/freebsd/crypto/openssl/crypto/
H A Dpacket.c19 int WPACKET_allocate_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes) in WPACKET_allocate_bytes()
29 int WPACKET_sub_allocate_bytes__(WPACKET *pkt, size_t len, in WPACKET_sub_allocate_bytes__()
46 int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes) in WPACKET_reserve_bytes()
80 int WPACKET_sub_reserve_bytes__(WPACKET *pkt, size_t len, in WPACKET_sub_reserve_bytes__()
103 static int wpacket_intern_init_len(WPACKET *pkt, size_t lenbytes) in wpacket_intern_init_len()
129 int WPACKET_init_static_len(WPACKET *pkt, unsigned char *buf, size_t len, in WPACKET_init_static_len()
146 int WPACKET_init_der(WPACKET *pkt, unsigned char *buf, size_t len) in WPACKET_init_der()
160 int WPACKET_init_len(WPACKET *pkt, BUF_MEM *buf, size_t lenbytes) in WPACKET_init_len()
174 int WPACKET_init(WPACKET *pkt, BUF_MEM *buf) in WPACKET_init()
179 int WPACKET_init_null(WPACKET *pkt, size_t lenbytes) in WPACKET_init_null()
[all …]
H A Dder_writer.c16 static int int_start_context(WPACKET *pkt, int tag) in int_start_context()
25 static int int_end_context(WPACKET *pkt, int tag) in int_end_context()
51 int ossl_DER_w_precompiled(WPACKET *pkt, int tag, in ossl_DER_w_precompiled()
60 int ossl_DER_w_boolean(WPACKET *pkt, int tag, int b) in ossl_DER_w_boolean()
70 int ossl_DER_w_octet_string(WPACKET *pkt, int tag, in ossl_DER_w_octet_string()
81 int ossl_DER_w_octet_string_uint32(WPACKET *pkt, int tag, uint32_t value) in ossl_DER_w_octet_string_uint32()
93 static int int_der_w_integer(WPACKET *pkt, int tag, in int_der_w_integer()
94 int (*put_bytes)(WPACKET *pkt, const void *v, in int_der_w_integer()
109 static int int_put_bytes_uint32(WPACKET *pkt, const void *v, in int_put_bytes_uint32()
128 int ossl_DER_w_uint32(WPACKET *pkt, int tag, uint32_t v) in ossl_DER_w_uint32()
[all …]
H A Dasn1_dsa.c39 int ossl_encode_der_length(WPACKET *pkt, size_t cont_len) in ossl_encode_der_length()
66 int ossl_encode_der_integer(WPACKET *pkt, const BIGNUM *n) in ossl_encode_der_integer()
106 int ossl_encode_der_dsa_sig(WPACKET *pkt, const BIGNUM *r, const BIGNUM *s) in ossl_encode_der_dsa_sig()
155 int ossl_decode_der_length(PACKET *pkt, PACKET *subpkt) in ossl_decode_der_length()
187 int ossl_decode_der_integer(PACKET *pkt, BIGNUM *n) in ossl_decode_der_integer()
237 PACKET pkt, contpkt; in ossl_decode_der_dsa_sig() local
/freebsd/crypto/openssl/test/
H A Dquic_wire_test.c28 static int encode_case_1_enc(WPACKET *pkt) in encode_case_1_enc()
36 static int encode_case_1_dec(PACKET *pkt, ossl_ssize_t fail) in encode_case_1_dec()
53 static int encode_case_2_enc(WPACKET *pkt) in encode_case_2_enc()
62 static int encode_case_2_dec(PACKET *pkt, ossl_ssize_t fail) in encode_case_2_dec()
88 static int encode_case_3_enc(WPACKET *pkt) in encode_case_3_enc()
96 static int encode_case_3_dec(PACKET *pkt, ossl_ssize_t fail) in encode_case_3_dec()
174 static int encode_case_4_enc(WPACKET *pkt) in encode_case_4_enc()
183 static int encode_case_4_dec(PACKET *pkt, ossl_ssize_t fail) in encode_case_4_dec()
211 static int encode_case_5_enc(WPACKET *pkt) in encode_case_5_enc()
220 static int encode_case_5_dec(PACKET *pkt, ossl_ssize_t fail) in encode_case_5_dec()
[all …]
H A Dpackettest.c19 PACKET pkt; in test_PACKET_remaining() local
34 PACKET pkt; in test_PACKET_end() local
51 PACKET pkt; in test_PACKET_get_1() local
68 PACKET pkt; in test_PACKET_get_4() local
85 PACKET pkt; in test_PACKET_get_net_2() local
102 PACKET pkt; in test_PACKET_get_net_3() local
119 PACKET pkt; in test_PACKET_get_net_4() local
135 PACKET pkt, subpkt; in test_PACKET_get_sub_packet() local
157 PACKET pkt; in test_PACKET_get_bytes() local
181 PACKET pkt; in test_PACKET_copy_bytes() local
[all …]
H A Dwpackettest.c59 static int cleanup(WPACKET *pkt) in cleanup()
67 WPACKET pkt; in test_WPACKET_init() local
143 WPACKET pkt; in test_WPACKET_set_max_size() local
190 WPACKET pkt; in test_WPACKET_start_sub_packet() local
272 WPACKET pkt; in test_WPACKET_set_flags() local
332 WPACKET pkt; in test_WPACKET_allocate_bytes() local
362 WPACKET pkt; in test_WPACKET_memcpy() local
386 WPACKET pkt; in test_WPACKET_init_der() local
459 WPACKET pkt; in test_WPACKET_quic() local
586 WPACKET pkt; in test_WPACKET_quic_vlint_random() local
/freebsd/crypto/openssl/ssl/statem/
H A Dextensions_clnt.c16 EXT_RETURN tls_construct_ctos_renegotiate(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_renegotiate()
63 EXT_RETURN tls_construct_ctos_server_name(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_server_name()
89 EXT_RETURN tls_construct_ctos_maxfragmentlen(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_maxfragmentlen()
114 EXT_RETURN tls_construct_ctos_srp(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_srp()
184 EXT_RETURN tls_construct_ctos_ec_pt_formats(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_ec_pt_formats()
215 EXT_RETURN tls_construct_ctos_supported_groups(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_supported_groups()
284 EXT_RETURN tls_construct_ctos_session_ticket(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_session_ticket()
325 EXT_RETURN tls_construct_ctos_sig_algs(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_sig_algs()
366 EXT_RETURN tls_construct_ctos_status_request(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_status_request()
431 EXT_RETURN tls_construct_ctos_npn(SSL_CONNECTION *s, WPACKET *pkt, in tls_construct_ctos_npn()
[all …]
H A Dextensions_srvr.c42 int tls_parse_ctos_renegotiate(SSL_CONNECTION *s, PACKET *pkt, in tls_parse_ctos_renegotiate()
105 int tls_parse_ctos_server_name(SSL_CONNECTION *s, PACKET *pkt, in tls_parse_ctos_server_name()
177 int tls_parse_ctos_maxfragmentlen(SSL_CONNECTION *s, PACKET *pkt, in tls_parse_ctos_maxfragmentlen()
220 int tls_parse_ctos_srp(SSL_CONNECTION *s, PACKET *pkt, unsigned int context, in tls_parse_ctos_srp()
240 int tls_parse_ctos_ec_pt_formats(SSL_CONNECTION *s, PACKET *pkt, in tls_parse_ctos_ec_pt_formats()
264 int tls_parse_ctos_session_ticket(SSL_CONNECTION *s, PACKET *pkt, in tls_parse_ctos_session_ticket()
279 int tls_parse_ctos_sig_algs_cert(SSL_CONNECTION *s, PACKET *pkt, in tls_parse_ctos_sig_algs_cert()
306 int tls_parse_ctos_sig_algs(SSL_CONNECTION *s, PACKET *pkt, in tls_parse_ctos_sig_algs()
332 int tls_parse_ctos_status_request(SSL_CONNECTION *s, PACKET *pkt, in tls_parse_ctos_status_request()
437 int tls_parse_ctos_npn(SSL_CONNECTION *s, PACKET *pkt, unsigned int context, in tls_parse_ctos_npn()
[all …]
H A Dstatem_clnt.c1093 PACKET *pkt) in ossl_statem_client_process_message()
1177 CON_FUNC_RETURN tls_construct_client_hello(SSL_CONNECTION *s, WPACKET *pkt) in tls_construct_client_hello()
1365 MSG_PROCESS_RETURN dtls_process_hello_verify(SSL_CONNECTION *s, PACKET *pkt) in dtls_process_hello_verify()
1469 MSG_PROCESS_RETURN tls_process_server_hello(SSL_CONNECTION *s, PACKET *pkt) in tls_process_server_hello()
1907 MSG_PROCESS_RETURN tls_process_server_rpk(SSL_CONNECTION *sc, PACKET *pkt) in tls_process_server_rpk()
1995 PACKET *pkt) in tls_process_server_certificate()
2186 MSG_PROCESS_RETURN tls_process_server_compressed_certificate(SSL_CONNECTION *sc, PACKET *pkt) in tls_process_server_compressed_certificate()
2200 static int tls_process_ske_psk_preamble(SSL_CONNECTION *s, PACKET *pkt) in tls_process_ske_psk_preamble()
2239 static int tls_process_ske_srp(SSL_CONNECTION *s, PACKET *pkt, EVP_PKEY **pkey) in tls_process_ske_srp()
2284 static int tls_process_ske_dhe(SSL_CONNECTION *s, PACKET *pkt, EVP_PKEY **pkey) in tls_process_ske_dhe()
[all …]
H A Dstatem_srvr.c1283 PACKET *pkt) in ossl_statem_server_process_message()
1387 int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie, in dtls_raw_hello_verify_request()
1399 WPACKET *pkt) in dtls_construct_hello_verify_request()
1490 MSG_PROCESS_RETURN tls_process_client_hello(SSL_CONNECTION *s, PACKET *pkt) in tls_process_client_hello()
2414 CON_FUNC_RETURN tls_construct_server_hello(SSL_CONNECTION *s, WPACKET *pkt) in tls_construct_server_hello()
2524 CON_FUNC_RETURN tls_construct_server_done(SSL_CONNECTION *s, WPACKET *pkt) in tls_construct_server_done()
2536 WPACKET *pkt) in tls_construct_server_key_exchange()
2847 WPACKET *pkt) in tls_construct_certificate_request()
2918 static int tls_process_cke_psk_preamble(SSL_CONNECTION *s, PACKET *pkt) in tls_process_cke_psk_preamble()
2978 static int tls_process_cke_rsa(SSL_CONNECTION *s, PACKET *pkt) in tls_process_cke_rsa()
[all …]
/freebsd/contrib/netbsd-tests/net/bpfjit/
H A Dt_bpfjit.c61 const uint8_t *pkt, unsigned int wirelen, unsigned int buflen) in jitcall()
108 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
133 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
166 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
191 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
216 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
240 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
265 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
290 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
315 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
[all …]
/freebsd/contrib/netbsd-tests/lib/libbpfjit/
H A Dt_bpfjit.c48 const uint8_t *pkt, unsigned int wirelen, unsigned int buflen) in jitcall()
88 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
116 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
155 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
185 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
215 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
244 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
274 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
304 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
334 uint8_t pkt[1]; /* the program doesn't read any data */ in ATF_TC_BODY() local
[all …]
/freebsd/contrib/unbound/iterator/
H A Diter_scrub.c63 remove_rrset(const char* str, sldns_buffer* pkt, struct msg_parse* msg, in remove_rrset()
112 uint8_t** nm, size_t* nmlen, sldns_buffer* pkt) in get_additional_name()
151 mark_additional_rrset(sldns_buffer* pkt, struct msg_parse* msg, in mark_additional_rrset()
188 size_t* snamelen, sldns_buffer* pkt) in parse_get_cname_target()
227 uint8_t* alias, size_t* aliaslen, sldns_buffer* pkt) in synth_cname()
255 struct rrset_parse* nx, sldns_buffer* pkt) in synth_cname_rrset()
310 pkt_strict_sub(sldns_buffer* pkt, uint8_t* sname, uint8_t* dr) in pkt_strict_sub()
322 pkt_sub(sldns_buffer* pkt, uint8_t* comprname, uint8_t* zone) in pkt_sub()
331 sub_of_pkt(sldns_buffer* pkt, uint8_t* zone, uint8_t* comprname) in sub_of_pkt()
372 shorten_rrset(sldns_buffer* pkt, struct rrset_parse* rrset, int count) in shorten_rrset()
[all …]
/freebsd/usr.sbin/bluetooth/btpand/
H A Dpacket.c40 packet_t *pkt; in packet_alloc() local
59 packet_free(packet_t *pkt) in packet_free()
79 packet_adj(packet_t *pkt, size_t size) in packet_adj()
90 pkthdr_alloc(packet_t *pkt) in pkthdr_alloc()
/freebsd/contrib/unbound/util/data/
H A Dmsgparse.c58 smart_compare(sldns_buffer* pkt, uint8_t* dnow, in smart_compare()
115 nsec_at_apex(sldns_buffer* pkt) in nsec_at_apex()
160 pkt_rrset_flags(sldns_buffer* pkt, uint16_t type, sldns_pkt_section sec) in pkt_rrset_flags()
172 pkt_hash_rrset(sldns_buffer* pkt, uint8_t* dname, uint16_t type, in pkt_hash_rrset()
187 pkt_hash_rrset_first(sldns_buffer* pkt, uint8_t* dname) in pkt_hash_rrset_first()
213 rrset_parse_equals(struct rrset_parse* p, sldns_buffer* pkt, hashvalue_type h, in rrset_parse_equals()
226 msgparse_hashtable_lookup(struct msg_parse* msg, sldns_buffer* pkt, in msgparse_hashtable_lookup()
242 pkt_rrsig_covered(sldns_buffer* pkt, uint8_t* here, uint16_t* type) in pkt_rrsig_covered()
261 pkt_rrsig_covered_equals(sldns_buffer* pkt, uint8_t* here, uint16_t type) in pkt_rrsig_covered_equals()
329 rrset_has_sigover(sldns_buffer* pkt, struct rrset_parse* rrset, uint16_t type, in rrset_has_sigover()
[all …]
/freebsd/crypto/openssl/crypto/ml_dsa/
H A Dml_dsa_encoders.c53 static int poly_encode_4_bits(const POLY *p, WPACKET *pkt) in poly_encode_4_bits()
90 static int poly_encode_6_bits(const POLY *p, WPACKET *pkt) in poly_encode_6_bits()
130 static int poly_encode_10_bits(const POLY *p, WPACKET *pkt) in poly_encode_10_bits()
162 static int poly_decode_10_bits(POLY *p, PACKET *pkt) in poly_decode_10_bits()
199 static int poly_encode_signed_4(const POLY *p, WPACKET *pkt) in poly_encode_signed_4()
225 static int poly_decode_signed_4(POLY *p, PACKET *pkt) in poly_decode_signed_4()
287 static int poly_encode_signed_2(const POLY *p, WPACKET *pkt) in poly_encode_signed_2()
323 static int poly_decode_signed_2(POLY *p, PACKET *pkt) in poly_decode_signed_2()
386 static int poly_encode_signed_two_to_power_12(const POLY *p, WPACKET *pkt) in poly_encode_signed_two_to_power_12()
423 static int poly_decode_signed_two_to_power_12(POLY *p, PACKET *pkt) in poly_decode_signed_two_to_power_12()
[all …]
/freebsd/crypto/openssl/providers/common/der/
H A Dder_ecx_key.c14 int ossl_DER_w_algorithmIdentifier_X25519(WPACKET *pkt, int cont, ECX_KEY *ec) in ossl_DER_w_algorithmIdentifier_X25519()
23 int ossl_DER_w_algorithmIdentifier_X448(WPACKET *pkt, int cont, ECX_KEY *ec) in ossl_DER_w_algorithmIdentifier_X448()
32 int ossl_DER_w_algorithmIdentifier_ED25519(WPACKET *pkt, int cont, ECX_KEY *ec) in ossl_DER_w_algorithmIdentifier_ED25519()
41 int ossl_DER_w_algorithmIdentifier_ED448(WPACKET *pkt, int cont, ECX_KEY *ec) in ossl_DER_w_algorithmIdentifier_ED448()
/freebsd/sys/dev/xen/netback/
H A Dnetback_unit_tests.c393 struct xnb_pkt pkt; in xnb_ring2pkt_emptyring() local
407 struct xnb_pkt pkt; in xnb_ring2pkt_1req() local
438 struct xnb_pkt pkt; in xnb_ring2pkt_2req() local
475 struct xnb_pkt pkt; in xnb_ring2pkt_3req() local
519 struct xnb_pkt pkt; in xnb_ring2pkt_extra() local
572 struct xnb_pkt pkt; in xnb_ring2pkt_partial() local
597 struct xnb_pkt pkt; in xnb_ring2pkt_wraps() local
650 struct xnb_pkt pkt; in xnb_txpkt2rsp_emptypkt() local
671 struct xnb_pkt pkt; in xnb_txpkt2rsp_1req() local
703 struct xnb_pkt pkt; in xnb_txpkt2rsp_extra() local
[all …]
/freebsd/crypto/krb5/src/lib/krad/
H A Dpacket.c60 krb5_data pkt; member
206 krad_packet *pkt; in packet_new() local
218 packet_set_attrset(krb5_context ctx, const char *secret, krad_packet *pkt) in packet_set_attrset()
247 has_pkt_msgauth(const krad_packet *pkt) in has_pkt_msgauth()
256 lookup_msgauth_addr(const krad_packet *pkt) in lookup_msgauth_addr()
278 calculate_mac(const char *secret, const krad_packet *pkt, in calculate_mac()
337 krad_packet_free(krad_packet *pkt) in krad_packet_free()
351 krad_packet *pkt; in krad_packet_new_request() local
415 krad_packet *pkt; in krad_packet_new_response() local
472 verify_msgauth(const char *secret, const krad_packet *pkt, in verify_msgauth()
[all …]

12345678910>>...17