diff options
author | Maria Matejka <mq@ucw.cz> | 2022-01-10 13:03:15 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-02-03 10:30:33 +0100 |
commit | 0f6ea957541dc59b15f4e8a42e9ed006345a2a70 (patch) | |
tree | 5a6b9d2cfe005baeacf1ccfcd83a4453158d2764 /lib | |
parent | d37513a372b0d5b133f59293af185ec831e2456f (diff) |
Explicitly storing and checking loop information in sockets
Diffstat (limited to 'lib')
-rw-r--r-- | lib/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/socket.h b/lib/socket.h index ff07660f..17d647f3 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -40,6 +40,7 @@ struct ssh_sock { typedef struct birdsock { resource r; pool *pool; /* Pool where incoming connections should be allocated (for SK_xxx_PASSIVE) */ + struct birdloop *loop; /* The birdloop where this socket belongs to */ int type; /* Socket type */ int subtype; /* Socket subtype */ void *data; /* User data */ |