diff options
Diffstat (limited to 'src/connection.h')
-rw-r--r-- | src/connection.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/connection.h b/src/connection.h index f37c0c7..2b9a97f 100644 --- a/src/connection.h +++ b/src/connection.h @@ -12,6 +12,12 @@ struct cmumble_connection { GOutputStream *output; GSource *source; + + struct { + GSocket *sock; + gboolean connected; + GSource *source; + } udp; }; struct cmumble_context; @@ -23,4 +29,7 @@ cmumble_connection_init(struct cmumble_context *ctx, int cmumble_connection_fini(struct cmumble_context *ctx); +void +cmumble_connection_udp_init(struct cmumble_context *ctx); + #endif /* _CONNECTION_H_ */ |