diff options
author | Florian Zeitz <florob@babelmonkeys.de> | 2011-06-14 01:17:07 +0200 |
---|---|---|
committer | Sam Roberts <vieuxtech@gmail.com> | 2012-04-11 13:33:34 -0700 |
commit | 923eef192925cae29223974dbf1addd59b4b0f28 (patch) | |
tree | fa8a9daf1b6acd5a7b9d0b6528d0aba8147ac8d0 /src/udp.h | |
parent | 5c33ef99977587dd9ae4e013d2d43aa8bf493ad1 (diff) | |
download | luasocket-923eef192925cae29223974dbf1addd59b4b0f28.tar.gz luasocket-923eef192925cae29223974dbf1addd59b4b0f28.tar.bz2 luasocket-923eef192925cae29223974dbf1addd59b4b0f28.zip |
Rework binding IPv6 sockets by harmonizing it with the IPv4 variant
Diffstat (limited to 'src/udp.h')
-rw-r--r-- | src/udp.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -23,6 +23,7 @@ | |||
23 | typedef struct t_udp_ { | 23 | typedef struct t_udp_ { |
24 | t_socket sock; | 24 | t_socket sock; |
25 | t_timeout tm; | 25 | t_timeout tm; |
26 | int domain; | ||
26 | } t_udp; | 27 | } t_udp; |
27 | typedef t_udp *p_udp; | 28 | typedef t_udp *p_udp; |
28 | 29 | ||