aboutsummaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-06-21 15:32:31 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-06-21 15:32:31 +0200
commit46305df5903270d9b63652a1ce5fae2ee861a0e4 (patch)
tree9270c8e8697afd2d6451524e8c59e992029c4641 /client.c
parent8cfdfdc4dec97710ae52aa8fb5efa5d162811114 (diff)
added RECV_FATAL_CALLBACK_ERROR for callback specific failured, RECV_FATAL is for internal failures
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'client.c')
-rw-r--r--client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/client.c b/client.c
index bdd0dd5..c8bb974 100644
--- a/client.c
+++ b/client.c
@@ -68,12 +68,12 @@ enum recv_return protocol_request_server_helo(struct connection * const state,
if (init_crypto_client(state, helo_pkt->client_rx_header, sizeof(helo_pkt->client_rx_header)) != 0) {
LOG(ERROR, "Client session keypair generation failed");
- return RECV_FATAL;
+ return RECV_FATAL_CALLBACK_ERROR;
}
if (ev_setup_generic_timer((struct ev_user_data *)state->user_data, PING_INTERVAL) != 0) {
LOG(ERROR, "Timer init failed");
- return RECV_FATAL;
+ return RECV_FATAL_CALLBACK_ERROR;
}
send_data(state);
@@ -113,7 +113,7 @@ enum recv_return protocol_request_ping(struct connection * const state,
}
if (ev_protocol_pong(state) != 0) {
- return RECV_FATAL;
+ return RECV_FATAL_CALLBACK_ERROR;
} else {
return RECV_SUCCESS;
}