Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
a34c66be
Commit
a34c66be
authored
12 years ago
by
Dmitry Simonenko
Browse files
Options
Downloads
Patches
Plain Diff
lua-socket-fix: connection timedout fix.
parent
c2b761e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/coeio.h
+2
-0
2 additions, 0 deletions
include/coeio.h
src/coeio.m
+1
-0
1 addition, 0 deletions
src/coeio.m
src/lua/lua_socket.m
+3
-6
3 additions, 6 deletions
src/lua/lua_socket.m
test/box/socket.result
+7
-7
7 additions, 7 deletions
test/box/socket.result
with
13 additions
and
13 deletions
include/coeio.h
+
2
−
0
View file @
a34c66be
...
...
@@ -46,6 +46,8 @@
#include
<sys/socket.h>
#include
<netdb.h>
#define ERESOLVE -1
/**
* Asynchronous IO Tasks (libeio wrapper)
*
...
...
This diff is collapsed.
Click to expand it.
src/coeio.m
+
1
−
0
View file @
a34c66be
...
...
@@ -218,6 +218,7 @@ getaddrinfo_cb(va_list ap)
const
struct
addrinfo
*
hints
=
va
_
arg
(
ap
,
const
struct
addrinfo
*
)
;
struct
addrinfo
**
res
=
va
_
arg
(
ap
,
struct
addrinfo
**
)
;
if
(
getaddrinfo
(
host
,
port
,
hints
,
res
))
{
errno
=
ERESOLVE
;
return
-
1
;
}
return
0
;
...
...
This diff is collapsed.
Click to expand it.
src/lua/lua_socket.m
+
3
−
6
View file @
a34c66be
...
...
@@ -56,9 +56,6 @@ static const char socketlib_name[] = "box.socket";
* Here we map all failures of name resolution to a single
* socket error number.
*/
enum bio_error {
ERESOLVE = -1
};
/** last operation status */
enum bio_status {
...
...
@@ -307,7 +304,7 @@ lbox_socket_connect(struct lua_State *L)
evio_timeout_init(
&
start,
&
delay, timeout);
struct addrinfo *ai = coeio_resolve(s->socktype, host, port, delay);
if (ai == NULL)
return bio_pushsockerror(L, s,
ERESOLVE
);
return bio_pushsockerror(L, s,
errno
);
evio_timeout_update(start,
&delay);
@try {
...
...
@@ -660,7 +657,7 @@ lbox_socket_bind(struct lua_State *L)
/* try to resolve a hostname */
struct addrinfo *ai = coeio_resolve(s->socktype, host, port, timeout);
if (ai == NULL)
return bio_pusherror(L, s,
ERESOLVE
);
return bio_pusherror(L, s,
errno
);
@try {
evio_bind_addrinfo(
&
s->coio, ai);
} @catch (SocketError *e) {
...
...
@@ -777,7 +774,7 @@ lbox_socket_sendto(struct lua_State *L)
/* try to resolve a hostname */
struct addrinfo *a = coeio_resolve(s->socktype, host, port, delay);
if (a == NULL)
return bio_pushsenderror(L, s, 0,
ERESOLVE
);
return bio_pushsenderror(L, s, 0,
errno
);
evio_timeout_update(start,
&delay);
addr = (struct sockaddr_in *) a->ai_addr;
addrlen = a->ai_addrlen;
...
...
This diff is collapsed.
Click to expand it.
test/box/socket.result
+
7
−
7
View file @
a34c66be
...
...
@@ -95,14 +95,14 @@ lua s:close()
lua s:connect('somewhereelse', '30303', 0.01)
---
- nil
-
error
-
-
1
-
Host name resolution failed
-
timeout
- 1
10
-
Connection timed out
...
lua s:error()
---
-
-
1
-
Host name resolution failed
- 1
10
-
Connection timed out
...
lua s:close()
---
...
...
@@ -117,8 +117,8 @@ error: 'box.socket: socket is not initialized'
...
lua s:error()
---
-
-
1
-
Host name resolution failed
- 1
10
-
Connection timed out
...
lua s = box.socket.tcp()
---
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment