Tracking "Invalid session state zero"
This commit is contained in:
parent
08eb93ff91
commit
c6e34c3b8c
1 changed files with 3 additions and 0 deletions
|
@ -198,6 +198,9 @@ bool receive_meta(connection_t *c) {
|
|||
}
|
||||
|
||||
if(c->protocol_minor >= 2) {
|
||||
if (!c->sptps.state)
|
||||
logger(DEBUG_ALWAYS, LOG_ERR, "Metadata socket should support sptps but state is zero! %s (%s)", c->name, c->hostname);
|
||||
|
||||
int len = sptps_receive_data(&c->sptps, bufp, inlen);
|
||||
if(!len)
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue