Lines Matching defs:pkt
552 PACKET pkt;
553 MSG_PROCESS_RETURN(*process_message) (SSL *s, PACKET *pkt);
643 if (!PACKET_buf_init(&pkt, s->init_msg, len)) {
647 ret = process_message(s, &pkt);
771 int (*get_construct_message_f) (SSL *s, WPACKET *pkt,
772 int (**confunc) (SSL *s, WPACKET *pkt),
775 int (*confunc) (SSL *s, WPACKET *pkt);
777 WPACKET pkt;
836 if (!get_construct_message_f(s, &pkt, &confunc, &mt)) {
846 if (!WPACKET_init(&pkt, s->init_buf)
847 || !ssl_set_handshake_header(s, &pkt, mt)) {
848 WPACKET_cleanup(&pkt);
855 tmpret = confunc(s, &pkt);
857 WPACKET_cleanup(&pkt);
865 WPACKET_cleanup(&pkt);
871 if (!ssl_close_construct_packet(s, &pkt, mt)
872 || !WPACKET_finish(&pkt)) {
873 WPACKET_cleanup(&pkt);