Symbol: dtls12_handshake_msg
lib/libssl/dtls12_handshake_msg.c
120
dtls12_handshake_msg_finish(struct dtls12_handshake_msg *msg)
lib/libssl/dtls12_handshake_msg.c
149
dtls12_handshake_msg_fragment_reset(struct dtls12_handshake_msg *msg)
lib/libssl/dtls12_handshake_msg.c
162
dtls12_handshake_msg_fragment_build(struct dtls12_handshake_msg *msg,
lib/libssl/dtls12_handshake_msg.c
210
dtls12_handshake_msg_fragment_next(struct dtls12_handshake_msg *msg)
lib/libssl/dtls12_handshake_msg.c
228
dtls12_handshake_msg_fragment_pending(struct dtls12_handshake_msg *msg)
lib/libssl/dtls12_handshake_msg.c
48
struct dtls12_handshake_msg *
lib/libssl/dtls12_handshake_msg.c
51
struct dtls12_handshake_msg *msg = NULL;
lib/libssl/dtls12_handshake_msg.c
53
if ((msg = calloc(1, sizeof(struct dtls12_handshake_msg))) == NULL)
lib/libssl/dtls12_handshake_msg.c
60
dtls12_handshake_msg_free(struct dtls12_handshake_msg *msg)
lib/libssl/dtls12_handshake_msg.c
70
freezero(msg, sizeof(struct dtls12_handshake_msg));
lib/libssl/dtls12_handshake_msg.c
74
dtls12_handshake_msg_data(struct dtls12_handshake_msg *msg, CBS *cbs)
lib/libssl/dtls12_handshake_msg.c
80
dtls12_handshake_msg_type(struct dtls12_handshake_msg *msg)
lib/libssl/dtls12_handshake_msg.c
86
dtls12_handshake_msg_content(struct dtls12_handshake_msg *msg, CBS *cbs)
lib/libssl/dtls12_handshake_msg.c
94
dtls12_handshake_msg_start(struct dtls12_handshake_msg *msg, CBB *body,
lib/libssl/dtls12_internal.h
28
struct dtls12_handshake_msg;
lib/libssl/dtls12_internal.h
30
struct dtls12_handshake_msg *dtls12_handshake_msg_new(void);
lib/libssl/dtls12_internal.h
31
void dtls12_handshake_msg_free(struct dtls12_handshake_msg *msg);
lib/libssl/dtls12_internal.h
32
void dtls12_handshake_msg_data(struct dtls12_handshake_msg *msg, CBS *cbs);
lib/libssl/dtls12_internal.h
33
uint8_t dtls12_handshake_msg_type(struct dtls12_handshake_msg *msg);
lib/libssl/dtls12_internal.h
34
int dtls12_handshake_msg_content(struct dtls12_handshake_msg *msg, CBS *cbs);
lib/libssl/dtls12_internal.h
35
int dtls12_handshake_msg_start(struct dtls12_handshake_msg *msg, CBB *body,
lib/libssl/dtls12_internal.h
37
int dtls12_handshake_msg_finish(struct dtls12_handshake_msg *msg);
lib/libssl/dtls12_internal.h
38
int dtls12_handshake_msg_fragment_build(struct dtls12_handshake_msg *msg,
lib/libssl/dtls12_internal.h
40
int dtls12_handshake_msg_fragment_next(struct dtls12_handshake_msg *msg);
lib/libssl/dtls12_internal.h
41
int dtls12_handshake_msg_fragment_pending(struct dtls12_handshake_msg *msg);
lib/libssl/dtls12_internal.h
42
int dtls12_handshake_msg_fragment_reset(struct dtls12_handshake_msg *msg);
lib/libssl/dtls_local.h
184
struct dtls12_handshake_msg *hs_msg;
regress/lib/libssl/dtls/dtls_handshake_msg_test.c
172
struct dtls12_handshake_msg *hs_msg = NULL;