Merge remote-tracking branch 'dechamps/sptpsabort' into 1.1
This commit is contained in:
commit
f9ecaa1076
1 changed files with 2 additions and 2 deletions
|
@ -483,10 +483,10 @@ static bool sptps_receive_data_datagram(sptps_t *s, const char *data, size_t len
|
||||||
if(!s->instate)
|
if(!s->instate)
|
||||||
return error(s, EIO, "Application record received before handshake finished");
|
return error(s, EIO, "Application record received before handshake finished");
|
||||||
if(!s->receive_record(s->handle, type, buffer + 1, len - 21))
|
if(!s->receive_record(s->handle, type, buffer + 1, len - 21))
|
||||||
abort();
|
return false;
|
||||||
} else if(type == SPTPS_HANDSHAKE) {
|
} else if(type == SPTPS_HANDSHAKE) {
|
||||||
if(!receive_handshake(s, buffer + 1, len - 21))
|
if(!receive_handshake(s, buffer + 1, len - 21))
|
||||||
abort();
|
return false;
|
||||||
} else {
|
} else {
|
||||||
return error(s, EIO, "Invalid record type %d", type);
|
return error(s, EIO, "Invalid record type %d", type);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue