Skip to content
Snippets Groups Projects
Commit 4334784f authored by Mirar (Pontus Hagland)'s avatar Mirar (Pontus Hagland)
Browse files

port_create may take an int as the first argument, really...

Rev: src/modules/files/socket.c:1.10
parent 3c76dc1c
No related branches found
No related tags found
No related merge requests found
...@@ -367,7 +367,7 @@ void port_setup_program() ...@@ -367,7 +367,7 @@ void port_setup_program()
add_function("query_address",socket_query_address,"function(:string)",0); add_function("query_address",socket_query_address,"function(:string)",0);
add_function("errno",port_errno,"function(:int)",0); add_function("errno",port_errno,"function(:int)",0);
add_function("accept",port_accept,"function(:object)",0); add_function("accept",port_accept,"function(:object)",0);
add_function("create",port_create,"function(void|string,void|mixed:void)",0); add_function("create",port_create,"function(void|string|int,void|mixed:void)",0);
set_init_callback(init_port_struct); set_init_callback(init_port_struct);
set_exit_callback(exit_port_struct); set_exit_callback(exit_port_struct);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment