diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-06-21 15:32:31 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-06-21 15:32:31 +0200 |
commit | 46305df5903270d9b63652a1ce5fae2ee861a0e4 (patch) | |
tree | 9270c8e8697afd2d6451524e8c59e992029c4641 /client.c | |
parent | 8cfdfdc4dec97710ae52aa8fb5efa5d162811114 (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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; } |