Skip to content
Snippets Groups Projects
Commit 71f76561 authored by Christian Huitema's avatar Christian Huitema
Browse files

Fixed bug in closing sequence. Now ensures that the peer sends a...

Fixed bug in closing sequence. Now ensures that the peer sends a connection_close in response to a received closing message.
parent c81d78d3
No related merge requests found
{
// See https://go.microsoft.com//fwlink//?linkid=834763 for more information about this file.
"configurations": [
{
"name": "x86-Debug",
"generator": "Visual Studio 15 2017",
"configurationType" : "Debug",
"buildRoot": "${env.LOCALAPPDATA}\\CMakeBuild\\${workspaceHash}\\build\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-m -v:minimal"
},
{
"name": "x86-Release",
"generator": "Visual Studio 15 2017",
"configurationType" : "Release",
"buildRoot": "${env.LOCALAPPDATA}\\CMakeBuild\\${workspaceHash}\\build\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-m -v:minimal"
},
{
"name": "x64-Debug",
"generator": "Visual Studio 15 2017 Win64",
"configurationType" : "Debug",
"buildRoot": "${env.LOCALAPPDATA}\\CMakeBuild\\${workspaceHash}\\build\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-m -v:minimal"
},
{
"name": "x64-Release",
"generator": "Visual Studio 15 2017 Win64",
"configurationType" : "Release",
"buildRoot": "${env.LOCALAPPDATA}\\CMakeBuild\\${workspaceHash}\\build\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-m -v:minimal"
}
]
}
\ No newline at end of file
...@@ -2463,7 +2463,7 @@ int picoquic_decode_connection_close_frame(picoquic_cnx_t * cnx, uint8_t * bytes ...@@ -2463,7 +2463,7 @@ int picoquic_decode_connection_close_frame(picoquic_cnx_t * cnx, uint8_t * bytes
if (ret == 0) if (ret == 0)
{ {
cnx->cnx_state = picoquic_state_disconnected; cnx->cnx_state = picoquic_state_closing_received;
cnx->remote_error = error_code; cnx->remote_error = error_code;
*consumed = (size_t)(string_length + byte_index); *consumed = (size_t)(string_length + byte_index);
if (cnx->callback_fn) if (cnx->callback_fn)
...@@ -2610,7 +2610,7 @@ int picoquic_decode_application_close_frame(picoquic_cnx_t * cnx, uint8_t * byte ...@@ -2610,7 +2610,7 @@ int picoquic_decode_application_close_frame(picoquic_cnx_t * cnx, uint8_t * byte
if (ret == 0) if (ret == 0)
{ {
cnx->cnx_state = picoquic_state_disconnected; cnx->cnx_state = picoquic_state_closing_received;
cnx->remote_application_error = error_code; cnx->remote_application_error = error_code;
*consumed = (size_t)(string_length + byte_index); *consumed = (size_t)(string_length + byte_index);
if (cnx->callback_fn) if (cnx->callback_fn)
......
...@@ -774,16 +774,9 @@ int picoquic_prepare_packet(picoquic_cnx_t * cnx, picoquic_packet * packet, ...@@ -774,16 +774,9 @@ int picoquic_prepare_packet(picoquic_cnx_t * cnx, picoquic_packet * packet,
packet->send_time = current_time; packet->send_time = current_time;
/* Send the disconnect frame */ /* Send the disconnect frame */
if (cnx->local_error == 0) ret = picoquic_prepare_connection_close_frame(cnx, bytes + length,
{
ret = picoquic_prepare_application_close_frame(cnx, bytes + length,
cnx->send_mtu - checksum_overhead - length, &consumed); cnx->send_mtu - checksum_overhead - length, &consumed);
}
else
{
ret = picoquic_prepare_connection_close_frame(cnx, bytes + length,
cnx->send_mtu - checksum_overhead - length, &consumed);
}
if (ret == 0) if (ret == 0)
{ {
length += consumed; length += consumed;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment