Lines Matching full:pdu

40 /* Construct a new TextRequest PDU. */
41 static struct pdu *
44 struct pdu *request; in text_new_request()
61 /* Receive a TextRequest PDU from a connection. */
62 static struct pdu *
65 struct pdu *request; in text_receive_request()
81 log_errx(1, "received TextRequest PDU with invalid " in text_receive_request()
84 log_errx(1, "received TextRequest PDU with decreasing CmdSN: " in text_receive_request()
94 /* Construct a new TextResponse PDU in reply to a request. */
95 static struct pdu *
96 text_new_response(struct pdu *request, uint32_t ttt, bool final) in text_new_response()
98 struct pdu *response; in text_new_response()
123 /* Receive a TextResponse PDU from a connection. */
124 static struct pdu *
127 struct pdu *response; in text_receive_response()
141 log_errx(1, "received continue TextResponse PDU with " in text_receive_response()
147 log_errx(1, "received final TextResponse PDU with " in text_receive_response()
152 log_errx(1, "received TextResponse PDU with invalid " in text_receive_response()
156 log_errx(1, "received TextResponse PDU with wrong StatSN: " in text_receive_response()
167 * TextRequest PDU.
172 struct pdu *request; in text_send_request()
202 struct pdu *request, *response; in text_read_response()
226 log_errx(1, "received non-final TextRequest PDU with " in text_read_response()
244 * Read a list of keys from the initiator in a TextRequest PDU.
247 text_read_request(struct connection *conn, struct pdu **requestp) in text_read_request()
250 struct pdu *request; in text_read_request()
256 log_errx(1, "received TextRequest PDU with invalid TTT 0x%x", in text_read_request()
259 log_errx(1, "received TextRequest PDU with wrong ExpStatSN: " in text_read_request()
275 text_send_response(struct pdu *request, struct keys *response_keys) in text_send_response()
287 struct pdu *request2, *response; in text_send_response()
317 * ExpStatSN when receiving a TextResponse PDU. in text_send_response()
322 log_errx(1, "received continuation TextRequest PDU " in text_send_response()
326 "TextRequest PDU"); in text_send_response()
328 log_errx(1, "received TextRequest PDU with invalid " in text_send_response()