diff options
| author | ruki <[email protected]> | 2019-10-14 22:19:59 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-10-14 07:59:59 +0800 |
| commit | 5166d62948768bf3bac371816eb113f4cd490965 (patch) | |
| tree | 14d3eb25d5cb84505b5b02b5ec880b77797d4191 /core/src | |
| parent | 95df8418962d8dae106e52d35405c61bdbf4bada (diff) | |
add socket.bind
Diffstat (limited to 'core/src')
| -rw-r--r-- | core/src/xmake/io/socket_bind.c | 69 | ||||
| -rw-r--r-- | core/src/xmake/machine.c | 2 | ||||
| -rw-r--r-- | core/src/xmake/makefile | 1 |
3 files changed, 72 insertions, 0 deletions
diff --git a/core/src/xmake/io/socket_bind.c b/core/src/xmake/io/socket_bind.c new file mode 100644 index 000000000..7a14040a6 --- /dev/null +++ b/core/src/xmake/io/socket_bind.c @@ -0,0 +1,69 @@ +/*!A cross-platform build utility based on Lua + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * Copyright (C) 2015 - 2019, TBOOX Open Source Group. + * + * @author ruki + * @file socket_bind.c + * + */ + +/* ////////////////////////////////////////////////////////////////////////////////////// + * trace + */ +#define TB_TRACE_MODULE_NAME "socket_bind" +#define TB_TRACE_MODULE_DEBUG (0) + +/* ////////////////////////////////////////////////////////////////////////////////////// + * includes + */ +#include "prefix.h" + +/* ////////////////////////////////////////////////////////////////////////////////////// + * interfaces + */ + +// io.socket_bind(sock, addr, port, family) +tb_int_t xm_io_socket_bind(lua_State* lua) +{ + // check + tb_assert_and_check_return_val(lua, 0); + + // is user data? + if (!lua_isuserdata(lua, 1)) + return 0; + + // get socket + tb_socket_ref_t sock = (tb_socket_ref_t)lua_touserdata(lua, 1); + tb_check_return_val(sock, 0); + + // get address + tb_char_t const* address = lua_tostring(lua, 2); + tb_assert_and_check_return_val(address, 0); + + // get port + tb_size_t port = (tb_size_t)luaL_checknumber(lua, 3); + + // get family + tb_size_t family = (tb_size_t)luaL_checknumber(lua, 4); + + // init address + tb_ipaddr_t addr; + tb_ipaddr_set(&addr, address, port, family); + + // bind socket + lua_pushboolean(lua, tb_socket_bind(sock, &addr)); + return 1; +} + diff --git a/core/src/xmake/machine.c b/core/src/xmake/machine.c index 462ff62ef..d22647728 100644 --- a/core/src/xmake/machine.c +++ b/core/src/xmake/machine.c @@ -113,6 +113,7 @@ tb_int_t xm_io_filelock_close(lua_State* lua); tb_int_t xm_io_socket_open(lua_State* lua); tb_int_t xm_io_socket_rawfd(lua_State* lua); tb_int_t xm_io_socket_wait(lua_State* lua); +tb_int_t xm_io_socket_bind(lua_State* lua); tb_int_t xm_io_socket_connect(lua_State* lua); tb_int_t xm_io_socket_close(lua_State* lua); @@ -251,6 +252,7 @@ static luaL_Reg const g_io_functions[] = , { "socket_open", xm_io_socket_open } , { "socket_rawfd", xm_io_socket_rawfd } , { "socket_wait", xm_io_socket_wait } +, { "socket_bind", xm_io_socket_bind } , { "socket_connect", xm_io_socket_connect } , { "socket_close", xm_io_socket_close } , { tb_null, tb_null } diff --git a/core/src/xmake/makefile b/core/src/xmake/makefile index 383f71555..fa9131d05 100644 --- a/core/src/xmake/makefile +++ b/core/src/xmake/makefile @@ -63,6 +63,7 @@ xmake_C_FILES += \ io/socket_open \ io/socket_rawfd \ io/socket_wait \ + io/socket_bind \ io/socket_connect \ io/socket_close \ path/relative \ |
