1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

ol_handle_new -> ol_tcp_handle_new

This commit is contained in:
Ryan Dahl 2011-03-29 19:57:11 -07:00
parent dee44d886b
commit 3a23aaa21c
3 changed files with 9 additions and 4 deletions

View File

@ -54,7 +54,7 @@ int ol_run() {
}
ol_handle* ol_handle_new(ol_close_cb close_cb, void* data) {
ol_handle* ol_tcp_handle_new(ol_close_cb close_cb, void* data) {
ol_handle *handle = calloc(sizeof(ol_handle), 1);
handle->close_cb = close_cb;
handle->data = data;
@ -127,7 +127,7 @@ int ol_tcp_init_fd(int fd) {
ol_handle* ol_tcp_open(ol_handle* parent, int fd) {
ol_handle* h = ol_handle_new(NULL, NULL);
ol_handle* h = ol_tcp_handle_new(NULL, NULL);
if (!h) {
return NULL;
}

7
ol.h
View File

@ -80,7 +80,12 @@ const char* ol_err_str(ol_err err);
void ol_init();
int ol_run();
ol_handle* ol_handle_new(ol_close_cb close_cb, void* data);
ol_handle* ol_tcp_handle_new(ol_close_cb close_cb, void* data);
/* TODO:
* ol_named_pipe_handle_new
* ol_file_handle_new
* ol_tty_handle_new
*/
/* TCP server methods. */
int ol_bind(ol_handle* handle, struct sockaddr* addr);

View File

@ -89,7 +89,7 @@ int main(int argc, char** argv) {
ol_init();
server = ol_handle_new(on_close, NULL);
server = ol_tcp_handle_new(on_close, NULL);
addr = ol_ip4_addr("0.0.0.0", 8000);