Home
last modified time | relevance | path

Searched refs:msg_type (Results 1 – 25 of 108) sorted by relevance

12345

/src/contrib/wpa/src/radius/
H A Dradius_client.c103 RadiusType msg_type; member
291 RadiusType msg_type, in radius_client_register() argument
302 if (msg_type == RADIUS_ACCT) { in radius_client_register()
348 int s, RadiusType msg_type) in radius_client_handle_send_error() argument
359 if (msg_type == RADIUS_ACCT || in radius_client_handle_send_error()
360 msg_type == RADIUS_ACCT_INTERIM) { in radius_client_handle_send_error()
391 if (entry->msg_type == RADIUS_ACCT || in radius_client_retransmit()
392 entry->msg_type == RADIUS_ACCT_INTERIM) { in radius_client_retransmit()
437 if (entry->msg_type == RADIUS_ACCT_INTERIM) { in radius_client_retransmit()
463 if (entry->msg_type == RADIUS_ACCT && in radius_client_retransmit()
[all …]
H A Dradius_client.h268 RadiusType msg_type,
279 RadiusType msg_type, const u8 *addr);
/src/contrib/tcpdump/
H A Dprint-olsr.c90 nd_uint8_t msg_type; member
100 nd_uint8_t msg_type; member
320 u_int msg_type, msg_len, msg_tlen, hello_len; in olsr_print() local
365 msg_type = GET_U_1(msgptr.v6->msg_type); in olsr_print()
372 if (msg_type == 0 || msg_len == 0) { in olsr_print()
378 tok2str(olsr_msg_values, "Unknown", msg_type), in olsr_print()
379 msg_type, GET_IP6ADDR_STRING(msgptr.v6->originator), in olsr_print()
394 msg_type = GET_U_1(msgptr.v4->msg_type); in olsr_print()
401 if (msg_type == 0 || msg_len == 0) { in olsr_print()
407 tok2str(olsr_msg_values, "Unknown", msg_type), in olsr_print()
[all …]
H A Dprint-lwapp.c64 nd_uint8_t msg_type; member
172 u_int msg_type, msg_tlen; in lwapp_control_print() local
241 msg_type = GET_U_1(lwapp_control_header->msg_type); in lwapp_control_print()
243 tok2str(lwapp_msg_type_values,"Unknown",msg_type), in lwapp_control_print()
244 msg_type, in lwapp_control_print()
253 switch(msg_type) { in lwapp_control_print()
H A Dprint-geonet.c61 u_int msg_type; in print_btp_body() local
66 msg_type = GET_U_1(bp + 1); in print_btp_body()
67 ND_PRINT(" t:%u-%s", msg_type, in print_btp_body()
68 tok2str(msg_type_values, "unknown (%u)", msg_type)); in print_btp_body()
H A Dprint-ldp.c578 u_short pdu_len,msg_len,msg_type; in ldp_pdu_print() local
626 msg_type=LDP_MASK_MSG_TYPE(GET_BE_U_2(ldp_msg_header->type)); in ldp_pdu_print()
634 msg_type), in ldp_pdu_print()
635 msg_type, in ldp_pdu_print()
645 msg_type), in ldp_pdu_print()
646 msg_type, in ldp_pdu_print()
658 switch(msg_type) { in ldp_pdu_print()
H A Dprint-vqp.c45 nd_uint8_t msg_type; member
132 tok2str(vqp_msg_type_values, "unknown (%u)",GET_U_1(vqp_common_header->msg_type)), in vqp_print()
143 tok2str(vqp_msg_type_values, "unknown (%u)",GET_U_1(vqp_common_header->msg_type)), in vqp_print()
H A Dprint-rsvp.c49 nd_uint8_t msg_type; member
1922 uint8_t version_flags, msg_type; in rsvp_print() local
1942 msg_type = GET_U_1(rsvp_com_header->msg_type); in rsvp_print()
1948 tok2str(rsvp_msg_type_values, "unknown (%u)",msg_type), in rsvp_print()
1959 tok2str(rsvp_msg_type_values, "unknown, type: %u",msg_type), in rsvp_print()
1960 msg_type, in rsvp_print()
1975 switch(msg_type) { in rsvp_print()
2004 msg_type = GET_U_1(rsvp_com_header->msg_type); in rsvp_print()
2007 tok2str(rsvp_msg_type_values, "unknown, type: %u",msg_type), in rsvp_print()
2008 msg_type, in rsvp_print()
H A Dprint-ptp.c362 uint8_t foct, domain_no, msg_type, major_sdo_id, rsvd1, lm_int, control; in ptp_print_2() local
371 msg_type = foct & PTP_MSG_TYPE_MASK; in ptp_print_2()
372 ND_PRINT(", msg type: %s", tok2str(ptp_msg_type, "Reserved", msg_type)); in ptp_print_2()
412 switch(msg_type) { in ptp_print_2()
H A Dprint-aodv.c479 uint8_t msg_type; in aodv_print() local
486 msg_type = GET_U_1(dat); in aodv_print()
489 switch (msg_type) { in aodv_print()
533 ND_PRINT(" type %u %u", msg_type, length); in aodv_print()
H A Dprint-m3ua.c44 nd_uint8_t msg_type; member
321 tok2str(dict, "Unknown (0x%02x)", GET_U_1(hdr->msg_type))); in m3ua_print()
/src/sys/dev/mana/
H A Dshm_channel.c77 uint8_t msg_type : 3; member
126 mana_smc_read_response(struct shm_channel *sc, uint32_t msg_type, in mana_smc_read_response() argument
146 if (hdr.msg_type != msg_type || hdr.msg_version > msg_version || in mana_smc_read_response()
150 hdr.as_uint32, msg_type, msg_version); in mana_smc_read_response()
267 hdr->msg_type = SMC_MSG_TYPE_ESTABLISH_HWC; in mana_smc_setup_hwc()
311 hdr.msg_type = SMC_MSG_TYPE_DESTROY_HWC; in mana_smc_teardown_hwc()
/src/contrib/wpa/src/wps/
H A Dwps_validate.c545 static int wps_validate_msg_type(const u8 *msg_type, int mandatory) in wps_validate_msg_type() argument
547 if (msg_type == NULL) { in wps_validate_msg_type()
555 if (*msg_type < WPS_Beacon || *msg_type > WPS_WSC_DONE) { in wps_validate_msg_type()
557 "attribute value 0x%x", *msg_type); in wps_validate_msg_type()
1302 wps_validate_msg_type(attr.msg_type, 1) || in wps_validate_m1()
1358 wps_validate_msg_type(attr.msg_type, 1) || in wps_validate_m2()
1413 wps_validate_msg_type(attr.msg_type, 1) || in wps_validate_m2d()
1465 wps_validate_msg_type(attr.msg_type, 1) || in wps_validate_m3()
1501 wps_validate_msg_type(attr.msg_type, 1) || in wps_validate_m4()
1570 wps_validate_msg_type(attr.msg_type, 1) || in wps_validate_m5()
[all …]
H A Dwps_enrollee.c1294 if (attr.msg_type == NULL) { in wps_process_wsc_msg()
1300 switch (*attr.msg_type) { in wps_process_wsc_msg()
1340 *attr.msg_type); in wps_process_wsc_msg()
1351 if (ret == WPS_CONTINUE && *attr.msg_type != WPS_M2D) { in wps_process_wsc_msg()
1372 if (attr.msg_type == NULL) { in wps_process_wsc_ack()
1377 if (*attr.msg_type != WPS_WSC_ACK) { in wps_process_wsc_ack()
1379 *attr.msg_type); in wps_process_wsc_ack()
1419 if (attr.msg_type == NULL) { in wps_process_wsc_nack()
1424 if (*attr.msg_type != WPS_WSC_NACK) { in wps_process_wsc_nack()
1426 *attr.msg_type); in wps_process_wsc_nack()
[all …]
/src/sys/dev/qat/qat_common/
H A Dadf_pfvf_vf_proto.c128 u8 msg_type; in adf_vf2pf_blkmsg_data_req() local
134 msg_type = ADF_VF2PF_MSGTYPE_SMALL_BLOCK_REQ; in adf_vf2pf_blkmsg_data_req()
139 msg_type = ADF_VF2PF_MSGTYPE_MEDIUM_BLOCK_REQ; in adf_vf2pf_blkmsg_data_req()
145 msg_type = ADF_VF2PF_MSGTYPE_LARGE_BLOCK_REQ; in adf_vf2pf_blkmsg_data_req()
168 req.type = msg_type; in adf_vf2pf_blkmsg_data_req()
/src/tests/atf_python/sys/netpfil/ipfw/
H A Dioctl.py397 def __init__(self, msg_type, obj_list=[]): argument
398 if isinstance(msg_type, Enum):
399 self.obj_type = msg_type.value
400 self._enum = msg_type
402 self.obj_type = msg_type
436 def is_type(self, msg_type): argument
437 return enum_or_int(msg_type) == self.msg_type
/src/usr.sbin/bsdconfig/mouse/
H A Dmouse54 '3 $msg_type' '$msg_select_mouse_protocol_type'
126 "3 $msg_type") command=type ;; # Select mouse protocol type
/src/sys/contrib/dev/athk/ath10k/
H A Dhtt_tx.c567 u8 msg_type = 0; in ath10k_htt_htc_tx_complete() local
571 msg_type = htt_hdr->msg_type; in ath10k_htt_htc_tx_complete()
573 if (msg_type == HTT_H2T_MSG_TYPE_TX_FRM) { in ath10k_htt_htc_tx_complete()
584 if ((!htt->disable_tx_comp) || (msg_type != HTT_H2T_MSG_TYPE_TX_FRM)) in ath10k_htt_htc_tx_complete()
622 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_VERSION_REQ; in ath10k_htt_h2t_ver_req_msg()
651 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_STATS_REQ; in ath10k_htt_h2t_stats_req()
701 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG; in ath10k_htt_send_frag_desc_bank_cfg_32()
763 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG; in ath10k_htt_send_frag_desc_bank_cfg_64()
844 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_RX_RING_CFG; in ath10k_htt_send_rx_ring_cfg_32()
916 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_RX_RING_CFG; in ath10k_htt_send_rx_ring_cfg_64()
[all …]
/src/sys/rpc/
H A Drpc_msg.h52 enum msg_type { enum
149 enum msg_type rm_direction;
H A Drpc_prot.c172 enum msg_type *prm_direction; in xdr_replymsg()
182 rmsg->rm_direction = IXDR_GET_ENUM(buf, enum msg_type); in xdr_replymsg()
221 enum msg_type *prm_direction; in xdr_callhdr()
/src/crypto/krb5/src/include/gssrpc/
H A Drpc_msg.h55 enum msg_type { enum
152 enum msg_type rm_direction;
/src/include/rpc/
H A Drpc_msg.h52 enum msg_type { enum
149 enum msg_type rm_direction;
/src/crypto/openssl/crypto/asn1/
H A Dasn_mime.c257 const char *msg_type = NULL; in SMIME_write_ASN1_ex() local
314 msg_type = "enveloped-data"; in SMIME_write_ASN1_ex()
316 msg_type = "authEnveloped-data"; in SMIME_write_ASN1_ex()
319 msg_type = "signed-receipt"; in SMIME_write_ASN1_ex()
321 msg_type = "signed-data"; in SMIME_write_ASN1_ex()
323 msg_type = "certs-only"; in SMIME_write_ASN1_ex()
325 msg_type = "compressed-data"; in SMIME_write_ASN1_ex()
333 if (msg_type) in SMIME_write_ASN1_ex()
334 BIO_printf(bio, " smime-type=%s;", msg_type); in SMIME_write_ASN1_ex()
/src/sys/dev/hyperv/vmbus/x86/
H A Dvmbus_x86.c89 if (msg->msg_type == HYPERV_MSGTYPE_TIMER_EXPIRED) { in vmbus_handle_timer_intr1()
90 msg->msg_type = HYPERV_MSGTYPE_NONE; in vmbus_handle_timer_intr1()
/src/crypto/openssl/crypto/cmp/
H A Dcmp_client.c37 const char *msg_type = NULL; in unprotected_exception() local
47 msg_type = "error response"; in unprotected_exception()
56 msg_type = "revocation response message with rejection status"; in unprotected_exception()
60 msg_type = "PKI Confirmation message"; in unprotected_exception()
74 msg_type = "CertRepMessage with rejection status"; in unprotected_exception()
77 if (msg_type == NULL) in unprotected_exception()
80 invalid_protection ? "invalid" : "missing", msg_type); in unprotected_exception()

12345