aboutsummaryrefslogtreecommitdiff
path: root/src/tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tcp.c')
-rw-r--r--src/tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tcp.c b/src/tcp.c
index 2085937..5c85ae0 100644
--- a/src/tcp.c
+++ b/src/tcp.c
@@ -222,6 +222,7 @@ static int meth_bind(lua_State *L)
222 bindhints.ai_socktype = SOCK_STREAM; 222 bindhints.ai_socktype = SOCK_STREAM;
223 bindhints.ai_family = tcp->family; 223 bindhints.ai_family = tcp->family;
224 bindhints.ai_flags = AI_PASSIVE; 224 bindhints.ai_flags = AI_PASSIVE;
225 address = strcmp(address, "*")? address: NULL;
225 err = inet_trybind(&tcp->sock, address, port, &bindhints); 226 err = inet_trybind(&tcp->sock, address, port, &bindhints);
226 if (err) { 227 if (err) {
227 lua_pushnil(L); 228 lua_pushnil(L);
@@ -247,8 +248,7 @@ static int meth_connect(lua_State *L)
247 /* make sure we try to connect only to the same family */ 248 /* make sure we try to connect only to the same family */
248 connecthints.ai_family = tcp->family; 249 connecthints.ai_family = tcp->family;
249 timeout_markstart(&tcp->tm); 250 timeout_markstart(&tcp->tm);
250 err = inet_tryconnect(&tcp->sock, address, port, 251 err = inet_tryconnect(&tcp->sock, address, port, &tcp->tm, &connecthints);
251 &tcp->tm, &connecthints);
252 /* have to set the class even if it failed due to non-blocking connects */ 252 /* have to set the class even if it failed due to non-blocking connects */
253 auxiliar_setclass(L, "tcp{client}", 1); 253 auxiliar_setclass(L, "tcp{client}", 1);
254 if (err) { 254 if (err) {