diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-05-26 17:24:04 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-05-26 17:24:04 -0700 |
commit | bde5dd66713cec177846627bf026d8bcddbb41a8 (patch) | |
tree | 3b914749067f0b70a792a2e48ceda737c2f2db34 /common/os_calls.h | |
parent | d08e27e82463c0f998c82ff62cd6dda81822c68b (diff) | |
download | xrdp-proprietary-bde5dd66713cec177846627bf026d8bcddbb41a8.tar.gz xrdp-proprietary-bde5dd66713cec177846627bf026d8bcddbb41a8.zip |
added g_close_wait_obj and size parameter to g_write_ip_address
Diffstat (limited to 'common/os_calls.h')
-rw-r--r-- | common/os_calls.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/os_calls.h b/common/os_calls.h index 5c7d848e..009a9079 100644 --- a/common/os_calls.h +++ b/common/os_calls.h @@ -104,7 +104,7 @@ g_tcp_can_recv(int sck, int millis); int APP_CC g_tcp_select(int sck1, int sck2); void APP_CC -g_write_ip_address(int rcv_sck, char* ip_address); +g_write_ip_address(int rcv_sck, char* ip_address, int bytes); void APP_CC g_sleep(int msecs); tbus APP_CC @@ -122,6 +122,8 @@ g_is_wait_obj_set(tbus obj); int APP_CC g_delete_wait_obj(tbus obj); int APP_CC +g_close_wait_obj(tbus obj); +int APP_CC g_obj_wait(tbus* read_objs, int rcount, tbus* write_objs, int wcount, int mstimeout); void APP_CC |