Make sure we shutdown SSL connections when an error occurs.
This commit is contained in:
parent
b2e7a2848f
commit
c670d13369
@ -8,7 +8,7 @@ LD := $(CC)
|
|||||||
MV := mv
|
MV := mv
|
||||||
RANLIB := ranlib
|
RANLIB := ranlib
|
||||||
CFLAGS += -pipe -Wall
|
CFLAGS += -pipe -Wall
|
||||||
USE_SSL ?= NO
|
USE_SSL ?= YES
|
||||||
USE_BIGENDIAN ?= AUTO
|
USE_BIGENDIAN ?= AUTO
|
||||||
BITS ?= AUTO
|
BITS ?= AUTO
|
||||||
SILENT ?= YES
|
SILENT ?= YES
|
||||||
|
@ -279,6 +279,10 @@ void net_con_callback(struct net_connection* con, int events)
|
|||||||
con->callback(con, events, con->ptr);
|
con->callback(con, events, con->ptr);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case tls_st_error:
|
||||||
|
con->callback(con, NET_EVENT_READ, con->ptr);
|
||||||
|
break;
|
||||||
|
|
||||||
case tls_st_accepting:
|
case tls_st_accepting:
|
||||||
if (net_con_ssl_accept(con) < 0)
|
if (net_con_ssl_accept(con) < 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user