Problem: stream_engine assumes options_t.type is a single byte, but its type is int

Solution: change options_t.type to int8_t
This commit is contained in:
Simon Giesecke 2018-05-17 16:51:14 +02:00
parent 6a5051fac3
commit 290d215324

View File

@ -103,7 +103,7 @@ struct options_t
int tos;
// Socket type.
int type;
int8_t type;
// Linger time, in milliseconds.
atomic_value_t linger;