2011-04-18 11:10:18 -07:00
|
|
|
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-07-06 15:28:18 -07:00
|
|
|
#include "uv.h"
|
2011-04-19 04:26:32 +02:00
|
|
|
#include "task.h"
|
2011-03-28 01:55:29 -07:00
|
|
|
#include <stdio.h>
|
2011-03-28 03:26:00 -07:00
|
|
|
#include <stdlib.h>
|
2011-03-28 01:55:29 -07:00
|
|
|
|
|
|
|
typedef struct {
|
2011-07-13 22:04:51 +02:00
|
|
|
uv_write_t req;
|
2011-05-13 07:15:02 -07:00
|
|
|
uv_buf_t buf;
|
2011-05-03 21:30:09 +02:00
|
|
|
} write_req_t;
|
|
|
|
|
2011-08-31 04:19:26 +02:00
|
|
|
static uv_loop_t* loop;
|
|
|
|
|
2011-05-27 02:01:25 -07:00
|
|
|
static int server_closed;
|
2011-07-01 17:54:17 -07:00
|
|
|
static stream_type serverType;
|
|
|
|
static uv_tcp_t tcpServer;
|
2012-01-13 19:15:50 +01:00
|
|
|
static uv_udp_t udpServer;
|
2011-07-01 17:54:17 -07:00
|
|
|
static uv_pipe_t pipeServer;
|
|
|
|
static uv_handle_t* server;
|
2011-05-03 21:30:09 +02:00
|
|
|
|
2011-07-13 22:04:51 +02:00
|
|
|
static void after_write(uv_write_t* req, int status);
|
2013-08-31 02:15:08 +02:00
|
|
|
static void after_read(uv_stream_t*, ssize_t nread, const uv_buf_t* buf);
|
2011-06-08 12:02:42 +02:00
|
|
|
static void on_close(uv_handle_t* peer);
|
|
|
|
static void on_server_close(uv_handle_t* handle);
|
2011-07-22 15:32:27 -07:00
|
|
|
static void on_connection(uv_stream_t*, int status);
|
2011-04-01 00:09:06 +02:00
|
|
|
|
|
|
|
|
2011-07-13 22:04:51 +02:00
|
|
|
static void after_write(uv_write_t* req, int status) {
|
2011-05-03 21:30:09 +02:00
|
|
|
write_req_t* wr;
|
2011-05-04 00:38:32 +02:00
|
|
|
|
2011-05-03 21:30:09 +02:00
|
|
|
/* Free the read/write buffer and the request */
|
2012-11-01 15:29:00 +01:00
|
|
|
wr = (write_req_t*) req;
|
2011-05-03 21:30:09 +02:00
|
|
|
free(wr->buf.base);
|
|
|
|
free(wr);
|
2012-11-01 15:29:00 +01:00
|
|
|
|
|
|
|
if (status == 0)
|
|
|
|
return;
|
|
|
|
|
2013-06-06 23:10:50 +02:00
|
|
|
fprintf(stderr, "uv_write error: %s\n", uv_strerror(status));
|
2012-11-01 15:29:00 +01:00
|
|
|
|
2013-06-06 23:10:50 +02:00
|
|
|
if (status == UV_ECANCELED)
|
2012-11-01 15:29:00 +01:00
|
|
|
return;
|
|
|
|
|
2013-06-06 23:10:50 +02:00
|
|
|
ASSERT(status == UV_EPIPE);
|
2012-11-01 15:29:00 +01:00
|
|
|
uv_close((uv_handle_t*)req->handle, on_close);
|
2011-03-28 01:55:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-13 22:04:51 +02:00
|
|
|
static void after_shutdown(uv_shutdown_t* req, int status) {
|
|
|
|
uv_close((uv_handle_t*)req->handle, on_close);
|
2011-05-04 03:59:35 +02:00
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
static void after_read(uv_stream_t* handle,
|
|
|
|
ssize_t nread,
|
|
|
|
const uv_buf_t* buf) {
|
2011-05-27 02:01:25 -07:00
|
|
|
int i;
|
2011-05-03 21:30:09 +02:00
|
|
|
write_req_t *wr;
|
2011-07-13 22:04:51 +02:00
|
|
|
uv_shutdown_t* req;
|
2011-05-04 00:38:32 +02:00
|
|
|
|
2011-05-03 00:16:04 +02:00
|
|
|
if (nread < 0) {
|
|
|
|
/* Error or EOF */
|
2013-06-06 23:10:50 +02:00
|
|
|
ASSERT(nread == UV_EOF);
|
2011-05-04 00:38:32 +02:00
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
if (buf->base) {
|
|
|
|
free(buf->base);
|
2011-05-03 00:16:04 +02:00
|
|
|
}
|
2011-04-20 22:28:36 +02:00
|
|
|
|
2011-07-13 22:04:51 +02:00
|
|
|
req = (uv_shutdown_t*) malloc(sizeof *req);
|
|
|
|
uv_shutdown(req, handle, after_shutdown);
|
2011-05-04 03:59:35 +02:00
|
|
|
|
2011-05-03 00:16:04 +02:00
|
|
|
return;
|
2011-05-04 00:38:32 +02:00
|
|
|
}
|
2011-04-07 04:51:59 +02:00
|
|
|
|
2011-03-31 14:22:20 +02:00
|
|
|
if (nread == 0) {
|
2011-05-03 00:16:04 +02:00
|
|
|
/* Everything OK, but nothing read. */
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2011-05-03 00:16:04 +02:00
|
|
|
return;
|
2011-03-28 01:55:29 -07:00
|
|
|
}
|
|
|
|
|
2011-08-12 02:34:09 +02:00
|
|
|
/*
|
2011-08-05 18:07:12 -07:00
|
|
|
* Scan for the letter Q which signals that we should quit the server.
|
|
|
|
* If we get QS it means close the stream.
|
|
|
|
*/
|
2011-05-27 02:01:25 -07:00
|
|
|
if (!server_closed) {
|
|
|
|
for (i = 0; i < nread; i++) {
|
2013-08-31 02:15:08 +02:00
|
|
|
if (buf->base[i] == 'Q') {
|
|
|
|
if (i + 1 < nread && buf->base[i + 1] == 'S') {
|
|
|
|
free(buf->base);
|
2011-08-11 18:19:16 -07:00
|
|
|
uv_close((uv_handle_t*)handle, on_close);
|
2011-08-05 18:07:12 -07:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
uv_close(server, on_server_close);
|
|
|
|
server_closed = 1;
|
|
|
|
}
|
2011-05-27 02:01:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-03 21:30:09 +02:00
|
|
|
wr = (write_req_t*) malloc(sizeof *wr);
|
2011-05-03 02:55:51 +02:00
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
wr->buf = uv_buf_init(buf->base, nread);
|
2011-07-13 22:04:51 +02:00
|
|
|
if (uv_write(&wr->req, handle, &wr->buf, 1, after_write)) {
|
2011-05-11 19:56:33 -07:00
|
|
|
FATAL("uv_write failed");
|
2011-04-16 14:04:45 -07:00
|
|
|
}
|
2011-03-28 01:55:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-08 12:02:42 +02:00
|
|
|
static void on_close(uv_handle_t* peer) {
|
|
|
|
free(peer);
|
2011-03-28 01:55:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-31 15:48:23 +02:00
|
|
|
static void echo_alloc(uv_handle_t* handle,
|
|
|
|
size_t suggested_size,
|
|
|
|
uv_buf_t* buf) {
|
|
|
|
buf->base = malloc(suggested_size);
|
|
|
|
buf->len = suggested_size;
|
2011-06-01 21:04:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-22 15:32:27 -07:00
|
|
|
static void on_connection(uv_stream_t* server, int status) {
|
2011-07-19 00:58:02 +02:00
|
|
|
uv_stream_t* stream;
|
2011-06-07 18:01:00 +02:00
|
|
|
int r;
|
2011-03-30 01:34:56 +02:00
|
|
|
|
2011-07-01 17:04:05 -07:00
|
|
|
if (status != 0) {
|
2013-06-06 23:10:50 +02:00
|
|
|
fprintf(stderr, "Connect error %s\n", uv_err_name(status));
|
2011-07-01 17:04:05 -07:00
|
|
|
}
|
2011-06-07 18:01:00 +02:00
|
|
|
ASSERT(status == 0);
|
|
|
|
|
2011-07-19 00:58:02 +02:00
|
|
|
switch (serverType) {
|
|
|
|
case TCP:
|
|
|
|
stream = malloc(sizeof(uv_tcp_t));
|
|
|
|
ASSERT(stream != NULL);
|
2011-09-09 21:44:03 -07:00
|
|
|
r = uv_tcp_init(loop, (uv_tcp_t*)stream);
|
|
|
|
ASSERT(r == 0);
|
2011-07-19 00:58:02 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PIPE:
|
|
|
|
stream = malloc(sizeof(uv_pipe_t));
|
|
|
|
ASSERT(stream != NULL);
|
2011-09-26 09:42:41 -07:00
|
|
|
r = uv_pipe_init(loop, (uv_pipe_t*)stream, 0);
|
2011-09-09 21:44:03 -07:00
|
|
|
ASSERT(r == 0);
|
2011-07-19 00:58:02 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ASSERT(0 && "Bad serverType");
|
|
|
|
abort();
|
2011-07-01 17:54:17 -07:00
|
|
|
}
|
2011-06-09 22:38:41 +02:00
|
|
|
|
2011-07-01 17:04:05 -07:00
|
|
|
/* associate server with stream */
|
2011-07-19 00:58:02 +02:00
|
|
|
stream->data = server;
|
2011-07-01 17:04:05 -07:00
|
|
|
|
2011-07-19 00:58:02 +02:00
|
|
|
r = uv_accept(server, stream);
|
2011-06-07 18:01:00 +02:00
|
|
|
ASSERT(r == 0);
|
2011-03-28 01:55:29 -07:00
|
|
|
|
2011-07-19 00:58:02 +02:00
|
|
|
r = uv_read_start(stream, echo_alloc, after_read);
|
2011-06-07 18:01:00 +02:00
|
|
|
ASSERT(r == 0);
|
2011-04-01 00:09:06 +02:00
|
|
|
}
|
2011-03-28 01:55:29 -07:00
|
|
|
|
2011-04-01 00:09:06 +02:00
|
|
|
|
2011-06-08 12:02:42 +02:00
|
|
|
static void on_server_close(uv_handle_t* handle) {
|
2011-07-01 17:54:17 -07:00
|
|
|
ASSERT(handle == server);
|
2011-03-28 01:55:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-13 19:15:50 +01:00
|
|
|
static void on_send(uv_udp_send_t* req, int status);
|
|
|
|
|
|
|
|
|
|
|
|
static void on_recv(uv_udp_t* handle,
|
|
|
|
ssize_t nread,
|
|
|
|
uv_buf_t buf,
|
|
|
|
struct sockaddr* addr,
|
|
|
|
unsigned flags) {
|
|
|
|
uv_udp_send_t* req;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
ASSERT(nread > 0);
|
|
|
|
ASSERT(addr->sa_family == AF_INET);
|
|
|
|
|
|
|
|
req = malloc(sizeof(*req));
|
|
|
|
ASSERT(req != NULL);
|
|
|
|
|
|
|
|
r = uv_udp_send(req, handle, &buf, 1, *(struct sockaddr_in*)addr, on_send);
|
|
|
|
ASSERT(r == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void on_send(uv_udp_send_t* req, int status) {
|
|
|
|
ASSERT(status == 0);
|
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
static int tcp4_echo_start(int port) {
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in addr;
|
2011-04-01 00:09:06 +02:00
|
|
|
int r;
|
2011-07-14 02:52:19 +02:00
|
|
|
|
2013-08-31 03:00:34 +02:00
|
|
|
ASSERT(0 == uv_ip4_addr("0.0.0.0", port, &addr));
|
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
server = (uv_handle_t*)&tcpServer;
|
|
|
|
serverType = TCP;
|
2011-07-14 02:52:19 +02:00
|
|
|
|
2011-08-31 04:19:26 +02:00
|
|
|
r = uv_tcp_init(loop, &tcpServer);
|
2011-04-07 04:51:59 +02:00
|
|
|
if (r) {
|
|
|
|
/* TODO: Error codes */
|
|
|
|
fprintf(stderr, "Socket creation error\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2011-03-28 01:55:29 -07:00
|
|
|
|
2013-08-31 03:56:38 +02:00
|
|
|
r = uv_tcp_bind(&tcpServer, &addr);
|
2011-03-29 10:08:45 -07:00
|
|
|
if (r) {
|
2011-03-30 22:42:02 -07:00
|
|
|
/* TODO: Error codes */
|
2011-03-29 10:08:45 -07:00
|
|
|
fprintf(stderr, "Bind error\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-05 18:07:12 -07:00
|
|
|
r = uv_listen((uv_stream_t*)&tcpServer, SOMAXCONN, on_connection);
|
2011-03-29 10:08:45 -07:00
|
|
|
if (r) {
|
2011-03-30 22:42:02 -07:00
|
|
|
/* TODO: Error codes */
|
2013-06-06 23:10:50 +02:00
|
|
|
fprintf(stderr, "Listen error %s\n", uv_err_name(r));
|
2011-03-29 10:08:45 -07:00
|
|
|
return 1;
|
|
|
|
}
|
2011-03-28 01:55:29 -07:00
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int tcp6_echo_start(int port) {
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in6 addr6;
|
2011-07-01 17:54:17 -07:00
|
|
|
int r;
|
2011-07-14 02:52:19 +02:00
|
|
|
|
2013-08-31 03:00:34 +02:00
|
|
|
ASSERT(0 == uv_ip6_addr("::1", port, &addr6));
|
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
server = (uv_handle_t*)&tcpServer;
|
|
|
|
serverType = TCP;
|
|
|
|
|
2011-08-31 04:19:26 +02:00
|
|
|
r = uv_tcp_init(loop, &tcpServer);
|
2011-07-01 17:04:05 -07:00
|
|
|
if (r) {
|
|
|
|
/* TODO: Error codes */
|
|
|
|
fprintf(stderr, "Socket creation error\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-07-06 17:01:20 -07:00
|
|
|
/* IPv6 is optional as not all platforms support it */
|
2013-08-31 03:56:38 +02:00
|
|
|
r = uv_tcp_bind6(&tcpServer, &addr6);
|
2011-07-01 17:04:05 -07:00
|
|
|
if (r) {
|
2011-07-06 17:01:20 -07:00
|
|
|
/* show message but return OK */
|
|
|
|
fprintf(stderr, "IPv6 not supported\n");
|
|
|
|
return 0;
|
2011-07-01 17:04:05 -07:00
|
|
|
}
|
|
|
|
|
2011-08-05 18:07:12 -07:00
|
|
|
r = uv_listen((uv_stream_t*)&tcpServer, SOMAXCONN, on_connection);
|
2011-07-01 17:54:17 -07:00
|
|
|
if (r) {
|
|
|
|
/* TODO: Error codes */
|
|
|
|
fprintf(stderr, "Listen error\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-13 19:15:50 +01:00
|
|
|
static int udp4_echo_start(int port) {
|
|
|
|
int r;
|
|
|
|
|
|
|
|
server = (uv_handle_t*)&udpServer;
|
|
|
|
serverType = UDP;
|
|
|
|
|
|
|
|
r = uv_udp_init(loop, &udpServer);
|
|
|
|
if (r) {
|
2013-06-06 23:10:50 +02:00
|
|
|
fprintf(stderr, "uv_udp_init: %s\n", uv_strerror(r));
|
2012-01-13 19:15:50 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = uv_udp_recv_start(&udpServer, echo_alloc, on_recv);
|
|
|
|
if (r) {
|
2013-06-06 23:10:50 +02:00
|
|
|
fprintf(stderr, "uv_udp_recv_start: %s\n", uv_strerror(r));
|
2012-01-13 19:15:50 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
static int pipe_echo_start(char* pipeName) {
|
|
|
|
int r;
|
2011-07-14 02:52:19 +02:00
|
|
|
|
2012-04-13 14:22:39 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
{
|
|
|
|
uv_fs_t req;
|
|
|
|
uv_fs_unlink(uv_default_loop(), &req, pipeName, NULL);
|
|
|
|
uv_fs_req_cleanup(&req);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
server = (uv_handle_t*)&pipeServer;
|
|
|
|
serverType = PIPE;
|
|
|
|
|
2011-09-26 09:42:41 -07:00
|
|
|
r = uv_pipe_init(loop, &pipeServer, 0);
|
2011-07-01 17:54:17 -07:00
|
|
|
if (r) {
|
2013-06-06 23:10:50 +02:00
|
|
|
fprintf(stderr, "uv_pipe_init: %s\n", uv_strerror(r));
|
2011-07-01 17:54:17 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-07-11 15:24:35 -07:00
|
|
|
r = uv_pipe_bind(&pipeServer, pipeName);
|
2011-07-01 17:54:17 -07:00
|
|
|
if (r) {
|
2013-06-06 23:10:50 +02:00
|
|
|
fprintf(stderr, "uv_pipe_bind: %s\n", uv_strerror(r));
|
2011-07-01 17:54:17 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-07-22 15:32:27 -07:00
|
|
|
r = uv_listen((uv_stream_t*)&pipeServer, SOMAXCONN, on_connection);
|
2011-07-01 17:04:05 -07:00
|
|
|
if (r) {
|
2013-06-06 23:10:50 +02:00
|
|
|
fprintf(stderr, "uv_pipe_listen: %s\n", uv_strerror(r));
|
2011-07-01 17:04:05 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-03-28 01:55:29 -07:00
|
|
|
return 0;
|
|
|
|
}
|
2011-04-01 00:09:06 +02:00
|
|
|
|
2011-04-05 01:43:17 +02:00
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
HELPER_IMPL(tcp4_echo_server) {
|
2011-08-31 04:19:26 +02:00
|
|
|
loop = uv_default_loop();
|
2011-08-31 04:18:29 +02:00
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
if (tcp4_echo_start(TEST_PORT))
|
|
|
|
return 1;
|
|
|
|
|
2013-01-16 23:20:03 +01:00
|
|
|
uv_run(loop, UV_RUN_DEFAULT);
|
2011-07-01 17:54:17 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HELPER_IMPL(tcp6_echo_server) {
|
2011-08-31 04:19:26 +02:00
|
|
|
loop = uv_default_loop();
|
2011-08-31 04:18:29 +02:00
|
|
|
|
2011-07-01 17:54:17 -07:00
|
|
|
if (tcp6_echo_start(TEST_PORT))
|
|
|
|
return 1;
|
|
|
|
|
2013-01-16 23:20:03 +01:00
|
|
|
uv_run(loop, UV_RUN_DEFAULT);
|
2011-07-01 17:54:17 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HELPER_IMPL(pipe_echo_server) {
|
2011-08-31 04:19:26 +02:00
|
|
|
loop = uv_default_loop();
|
2011-07-01 17:54:17 -07:00
|
|
|
|
|
|
|
if (pipe_echo_start(TEST_PIPENAME))
|
2011-04-18 23:51:45 -07:00
|
|
|
return 1;
|
|
|
|
|
2013-01-16 23:20:03 +01:00
|
|
|
uv_run(loop, UV_RUN_DEFAULT);
|
2011-04-18 23:51:45 -07:00
|
|
|
return 0;
|
|
|
|
}
|
2012-01-13 19:15:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
HELPER_IMPL(udp4_echo_server) {
|
|
|
|
loop = uv_default_loop();
|
|
|
|
|
|
|
|
if (udp4_echo_start(TEST_PORT))
|
|
|
|
return 1;
|
|
|
|
|
2013-01-16 23:20:03 +01:00
|
|
|
uv_run(loop, UV_RUN_DEFAULT);
|
2012-01-13 19:15:50 +01:00
|
|
|
return 0;
|
|
|
|
}
|