:orphan: .. index:: pair: group; TAPI for remote calls of Winsock2-specific routines .. _doxid-group__te__lib__rpc__winsock2: TAPI for remote calls of Winsock2-specific routines =================================================== .. toctree:: :hidden: enum_accept_verdict.rst struct__rpc_qos.rst struct__rpc_sys_info.rst struct_accept_cond.rst Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef rpc_ptr :ref:`rpc_wsaevent`; typedef rpc_ptr :ref:`rpc_handle`; typedef rpc_ptr :ref:`rpc_overlapped`; typedef rpc_ptr :ref:`rpc_hwnd`; typedef struct :ref:`_rpc_qos` :ref:`rpc_qos`; typedef struct :ref:`_rpc_sys_info` :target:`rpc_sys_info`; typedef enum :ref:`accept_verdict` :ref:`accept_verdict`; typedef struct :ref:`accept_cond` :ref:`accept_cond`; // enums enum { :target:`@69::WSA_WAIT_FAILED` = 1, :target:`@69::WAIT_IO_COMPLETION`, :target:`@69::WSA_WAIT_TIMEOUT`, :target:`@69::WSA_WAIT_EVENT_0`, }; enum :ref:`accept_verdict`; // structs struct :ref:`_rpc_qos`; struct :ref:`_rpc_sys_info`; struct :ref:`accept_cond`; // global functions int :ref:`rpc_wsa_startup`(:ref:`rcf_rpc_server`* rpcs); int :ref:`rpc_wsa_cleanup`(:ref:`rcf_rpc_server`* rpcs); int :ref:`rpc_wsa_socket`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_socket_domain` domain, :ref:`rpc_socket_type` type, :ref:`rpc_socket_proto` protocol, uint8_t* info, int info_len, :ref:`rpc_open_sock_flags` flags); int :ref:`rpc_wsa_duplicate_socket`(:ref:`rcf_rpc_server`* rpcs, int s, pid_t pid, uint8_t* info, int* info_len); bool :ref:`rpc_duplicate_handle`(:ref:`rcf_rpc_server`* rpcs, pid_t src, int old_fd, pid_t tgt, int* new_fd); bool :ref:`rpc_connect_ex`(:ref:`rcf_rpc_server`* rpcs, int s, const struct sockaddr* addr, rpc_ptr buf, ssize_t len_buf, size_t* bytes_sent, :ref:`rpc_overlapped` overlapped); bool :ref:`rpc_disconnect_ex`(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_overlapped` overlapped, int flags); int :ref:`rpc_wsa_accept`(:ref:`rcf_rpc_server`* rpcs, int s, struct sockaddr* addr, socklen_t* addrlen, socklen_t raddrlen, :ref:`accept_cond`* cond, int cond_num); bool :ref:`rpc_accept_ex`(:ref:`rcf_rpc_server`* rpcs, int s, int s_a, rpc_ptr buf, size_t len, size_t laddr_len, size_t raddr_len, size_t* bytes_received, :ref:`rpc_overlapped` overlapped); static size_t :ref:`rpc_accept_ex_buflen`(:ref:`rcf_rpc_server`* rpcs, size_t datalen); void :ref:`rpc_get_accept_addr_gen`(:ref:`rcf_rpc_server`* rpcs, int s, rpc_ptr buf, size_t len, size_t laddr_len, size_t raddr_len, struct sockaddr* laddr, size_t* l_sa_len, struct sockaddr* raddr, size_t* r_sa_len); static void :ref:`rpc_get_accept_addr`(:ref:`rcf_rpc_server`* rpcs, int s, rpc_ptr buf, size_t len, struct sockaddr* laddr, struct sockaddr* raddr); bool :ref:`rpc_transmit_packets`(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`tarpc_transmit_packets_element`* data, ssize_t element_count, ssize_t send_size, :ref:`rpc_overlapped` overlapped, ssize_t flags); bool :ref:`rpc_transmit_file`(:ref:`rcf_rpc_server`* rpcs, int s, int file, ssize_t len, ssize_t len_per_send, :ref:`rpc_overlapped` overlapped, void* head, ssize_t head_len, void* tail, ssize_t tail_len, ssize_t flags); bool :ref:`rpc_transmitfile_tabufs`(:ref:`rcf_rpc_server`* rpcs, int s, int file, ssize_t len, ssize_t bytes_per_send, :ref:`rpc_overlapped` overlapped, rpc_ptr head, ssize_t head_len, rpc_ptr tail, ssize_t tail_len, ssize_t flags); int :ref:`rpc_create_file`(:ref:`rcf_rpc_server`* rpcs, char* name, :ref:`rpc_cf_access_right` desired_access, rpc_cf_share_mode share_mode, rpc_ptr security_attributes, rpc_cf_creation_disposition creation_disposition, rpc_cf_flags_attributes flags_attributes, int template_file); int :ref:`rpc_closesocket`(:ref:`rcf_rpc_server`* rpcs, int s); bool :ref:`rpc_cancel_io`(:ref:`rcf_rpc_server`* rpcs, int fd); bool :ref:`rpc_has_overlapped_io_completed`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_overlapped` overlapped); int :ref:`rpc_create_io_completion_port`(:ref:`rcf_rpc_server`* rpcs, int file_handle, int existing_completion_port, uint64_t completion_key, unsigned int number_of_concurrent_threads); bool :ref:`rpc_get_queued_completion_status`(:ref:`rcf_rpc_server`* rpcs, int completion_port, size_t* number_of_bytes, uint64_t* completion_key, :ref:`rpc_overlapped`* overlapped, unsigned int milliseconds); bool :ref:`rpc_post_queued_completion_status`(:ref:`rcf_rpc_server`* rpcs, int completion_port, unsigned int number_of_bytes, uint64_t completion_key, :ref:`rpc_overlapped` overlapped); int :ref:`rpc_get_current_process_id`(:ref:`rcf_rpc_server`* rpcs); void :ref:`rpc_get_sys_info`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_sys_info`* sys_info); ssize_t :ref:`rpc_wsa_recv_ex`(:ref:`rcf_rpc_server`* rpcs, int s, void* buf, size_t len, :ref:`rpc_send_recv_flags`* flags, size_t rbuflen); :ref:`rpc_wsaevent` :ref:`rpc_create_event`(:ref:`rcf_rpc_server`* rpcs); :ref:`rpc_wsaevent` :ref:`rpc_create_event_with_bit`(:ref:`rcf_rpc_server`* rpcs); bool :ref:`rpc_close_event`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_wsaevent` hevent); bool :ref:`rpc_reset_event`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_wsaevent` hevent); bool :ref:`rpc_set_event`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_wsaevent` hevent); int :ref:`rpc_wsa_address_to_string`(:ref:`rcf_rpc_server`* rpcs, struct sockaddr* addr, socklen_t addrlen, uint8_t* info, int info_len, char* addrstr, ssize_t* addrstr_len); int :ref:`rpc_wsa_string_to_address`(:ref:`rcf_rpc_server`* rpcs, char* addrstr, :ref:`rpc_socket_domain` address_family, uint8_t* info, int info_len, struct sockaddr* addr, socklen_t* addrlen); int :ref:`rpc_wsa_cancel_async_request`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_handle` async_task_handle); int :ref:`rpc_alloc_wsabuf`(:ref:`rcf_rpc_server`* rpcs, size_t len, rpc_ptr* wsabuf, rpc_ptr* wsabuf_buf); void :ref:`rpc_free_wsabuf`(:ref:`rcf_rpc_server`* rpcs, rpc_ptr wsabuf); int :ref:`rpc_wsa_connect`(:ref:`rcf_rpc_server`* rpcs, int s, const struct sockaddr* addr, rpc_ptr caller_wsabuf, rpc_ptr callee_wsabuf, :ref:`rpc_qos`* sqos); int :ref:`rpc_wsa_ioctl`(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_ioctl_code` control_code, char* inbuf, unsigned int inbuf_len, char* outbuf, unsigned int outbuf_len, size_t* bytes_returned, :ref:`rpc_overlapped` overlapped, const char* callback); bool :ref:`rpc_get_wsa_ioctl_overlapped_result`(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_overlapped` overlapped, int* bytes, bool wait, :ref:`rpc_send_recv_flags`* flags, char* buf, :ref:`rpc_ioctl_code` control_code); :ref:`rpc_handle` :ref:`rpc_wsa_async_get_host_by_addr`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, char* addr, ssize_t addrlen, :ref:`rpc_socket_type` type, rpc_ptr buf, ssize_t buflen); :ref:`rpc_handle` :ref:`rpc_wsa_async_get_host_by_name`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, char* name, rpc_ptr buf, ssize_t buflen); :ref:`rpc_handle` :ref:`rpc_wsa_async_get_proto_by_name`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, char* name, rpc_ptr buf, ssize_t buflen); :ref:`rpc_handle` :ref:`rpc_wsa_async_get_proto_by_number`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, int number, rpc_ptr buf, ssize_t buflen); :ref:`rpc_handle` :ref:`rpc_wsa_async_get_serv_by_name`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, char* name, char* proto, rpc_ptr buf, ssize_t buflen); :ref:`rpc_handle` :ref:`rpc_wsa_async_get_serv_by_port`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, int port, char* proto, rpc_ptr buf, ssize_t buflen); :ref:`rpc_overlapped` :ref:`rpc_create_overlapped`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_wsaevent` hevent, unsigned int offset, unsigned int offset_high, ...); void :ref:`rpc_delete_overlapped`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_overlapped` overlapped); int :ref:`rpc_wsa_send`(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`rpc_send_recv_flags` flags, ssize_t* bytes_sent, :ref:`rpc_overlapped` overlapped, const char* callback); int :ref:`rpc_wsa_recv`(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, size_t riovcnt, :ref:`rpc_send_recv_flags`* flags, ssize_t* bytes_received, :ref:`rpc_overlapped` overlapped, const char* callback); int :ref:`rpc_wsa_send_to`(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`rpc_send_recv_flags` flags, ssize_t* bytes_sent, const struct sockaddr* to, :ref:`rpc_overlapped` overlapped, const char* callback); int :ref:`rpc_wsa_recv_from`(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, size_t riovcnt, :ref:`rpc_send_recv_flags`* flags, ssize_t* bytes_received, struct sockaddr* from, socklen_t* fromlen, :ref:`rpc_overlapped` overlapped, const char* callback); int :ref:`rpc_wsa_send_disconnect`(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov); int :ref:`rpc_wsa_recv_disconnect`(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov); int :ref:`rpc_wsa_recv_msg`(:ref:`rcf_rpc_server`* rpcs, int s, struct :ref:`rpc_msghdr`* msg, ssize_t* bytes_received, :ref:`rpc_overlapped` overlapped, const char* callback); bool :ref:`rpc_wsa_get_overlapped_result`(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_overlapped` overlapped, size_t* bytes, bool wait, :ref:`rpc_send_recv_flags`* flags, char* buf, int buflen); int :ref:`rpc_completion_callback`(:ref:`rcf_rpc_server`* rpcs, int* called, int* error, ssize_t* bytes, :ref:`rpc_overlapped`* overlapped); static void :ref:`rpc_cleanup_completion_callback`(:ref:`rcf_rpc_server`* rpcs); int :ref:`rpc_wsa_event_select`(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_wsaevent` event_object, :ref:`rpc_network_event` event); int :ref:`rpc_enum_network_events`(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_wsaevent` event_object, struct :ref:`tarpc_network_events`* events); static const char* :ref:`wsa_wait_rpc2str`(int code); int :ref:`rpc_wait_for_multiple_events`(:ref:`rcf_rpc_server`* rpcs, int count, :ref:`rpc_wsaevent`* events, bool wait_all, uint32_t timeout, bool alertable); :ref:`rpc_hwnd` :ref:`rpc_create_window`(:ref:`rcf_rpc_server`* rpcs); void :ref:`rpc_destroy_window`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd); int :ref:`rpc_wsa_async_select`(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_hwnd` hwnd, :ref:`rpc_network_event` event); int :ref:`rpc_peek_message`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, int* s, :ref:`rpc_network_event`* event); bool :ref:`rpc_is_winsock2`(:ref:`rcf_rpc_server`* rpcs); int :ref:`rpc_wsa_join_leaf`(:ref:`rcf_rpc_server`* rpcs, int s, const struct sockaddr* addr, rpc_ptr caller_wsabuf, rpc_ptr callee_wsabuf, :ref:`rpc_qos`* sqos, :ref:`rpc_join_leaf_flags` flags); bool :ref:`rpc_read_file`(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, size_t* received, :ref:`rpc_overlapped` overlapped); bool :ref:`rpc_write_file`(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, size_t* sent, :ref:`rpc_overlapped` overlapped); bool :ref:`rpc_read_file_ex`(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, :ref:`rpc_overlapped` overlapped, const char* callback); bool :ref:`rpc_write_file_ex`(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, :ref:`rpc_overlapped` overlapped, const char* callback); int :ref:`rpc_overfill_buffers_ex`(:ref:`rcf_rpc_server`* rpcs, int sock, uint64_t* sent, bool is_nonblocking); static const char* :ref:`wsa_name_convert`(const char* name); // macros #define :ref:`RCF_RPC_MAX_ACCEPT_CONDS` #define :ref:`RPC_WSA_IOCTL_OUTBUF_MAX` .. _details-group__te__lib__rpc__winsock2: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Typedefs -------- .. index:: pair: typedef; rpc_wsaevent .. _doxid-group__te__lib__rpc__winsock2_1ga663e3f45c6b577fcede025cb77ed1fa0: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef rpc_ptr rpc_wsaevent Windows Event Objects .. index:: pair: typedef; rpc_handle .. _doxid-group__te__lib__rpc__winsock2_1ga6dde813895e3968098b22fb9bfea53ed: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef rpc_ptr rpc_handle HANDLE .. index:: pair: typedef; rpc_overlapped .. _doxid-group__te__lib__rpc__winsock2_1gad8746eac9b3f97dabc06d465532eb87f: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef rpc_ptr rpc_overlapped Windows WSAOVERLAPPED structure .. index:: pair: typedef; rpc_hwnd .. _doxid-group__te__lib__rpc__winsock2_1ga39fc40705e891c4e2a72e5b23d59537f: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef rpc_ptr rpc_hwnd Windows HWND .. index:: pair: typedef; rpc_qos .. _doxid-group__te__lib__rpc__winsock2_1ga4c1ab470265e59d57c8fbb7ed9c9d713: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`_rpc_qos` rpc_qos Windows QOS structure .. index:: pair: typedef; accept_verdict .. _doxid-group__te__lib__rpc__winsock2_1gae8c28665e80096273008e862d7f413a2: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef enum :ref:`accept_verdict` accept_verdict Accept decision making .. index:: pair: typedef; accept_cond .. _doxid-group__te__lib__rpc__winsock2_1ga6efad43cc2ebf491bcd8d85fdb03fed0: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`accept_cond` accept_cond Accept Condition Global Functions ---------------- .. index:: pair: function; rpc_wsa_startup .. _doxid-group__te__lib__rpc__winsock2_1ga2a050a99cca7340996e24e53e400ccc6: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_startup(:ref:`rcf_rpc_server`* rpcs) **WSAStartup()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: Zero if successful. .. index:: pair: function; rpc_wsa_cleanup .. _doxid-group__te__lib__rpc__winsock2_1ga3e1065dc63dd39febb245a3b617bac60: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_cleanup(:ref:`rcf_rpc_server`* rpcs) **WSACleanup()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: Zero if successful. .. index:: pair: function; rpc_wsa_socket .. _doxid-group__te__lib__rpc__winsock2_1gaa30469baf26435dff8d77fe8fd8d0a93: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_socket(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_socket_domain` domain, :ref:`rpc_socket_type` type, :ref:`rpc_socket_proto` protocol, uint8_t* info, int info_len, :ref:`rpc_open_sock_flags` flags) **WSASocket()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - domain - communication domain * - type - type specification of the new socket * - protocol - specifies the protocol to be used * - info - pointer to an object than defines the characteristics of the created socket * - info_len - length of **info** * - flags - flags for socket creation (overlapped, multipoint, etc.) .. rubric:: Returns: Socket descriptor upon successful completion, otherwise -1 is returned. .. index:: pair: function; rpc_wsa_duplicate_socket .. _doxid-group__te__lib__rpc__winsock2_1gacb8d4375b4bcb91794d8ae061f7322a5: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_duplicate_socket(:ref:`rcf_rpc_server`* rpcs, int s, pid_t pid, uint8_t* info, int* info_len) **WSADuplicateSocket()** remote call. Protocol info is copied to the Test Engine and then back to the TA (in :ref:`rpc_wsa_socket() ` function) as is. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - s - old socket * - pid - destination process PID * - info - buffer for protocol info or NULL * - info_len - buffer length location (IN)/protocol info length location (OUT) .. rubric:: Returns: Value returned by WSADuplicateSocket() function .. index:: pair: function; rpc_duplicate_handle .. _doxid-group__te__lib__rpc__winsock2_1ga39198973df4420d3fc2aa6d2d019a733: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_duplicate_handle(:ref:`rcf_rpc_server`* rpcs, pid_t src, int old_fd, pid_t tgt, int* new_fd) **DuplicateHandle()** remote call. *bInheritHandle* is ``true``, *dwOptions* is DUPLICATE_SAME_ACCESS .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - src - source process PID * - old_fd - old socket * - tgt - target process PID * - new_fd - new socket location .. rubric:: Returns: Value returned by DuplicateHandle() function .. index:: pair: function; rpc_connect_ex .. _doxid-group__te__lib__rpc__winsock2_1ga5c7f5edbcf24b951a8a9273c827ba72a: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_connect_ex(:ref:`rcf_rpc_server`* rpcs, int s, const struct sockaddr* addr, rpc_ptr buf, ssize_t len_buf, size_t* bytes_sent, :ref:`rpc_overlapped` overlapped) Establish a connection to a specified socket, and optionally send data once connection is established. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - socket descriptor * - addr - pointer to a **sockaddr** structure containing the address to connect to. * - buf - RPC pointer to buffer containing connect data * - len_buf - length of the buffer **buf** * - bytes_sent - pointer a the number of bytes sent * - overlapped - **overlapped** object or RPC_NULL .. rubric:: Returns: Value returned by **ConnectEx()** .. index:: pair: function; rpc_disconnect_ex .. _doxid-group__te__lib__rpc__winsock2_1ga9d59f88bb78c356e3ce89e039bb1604d: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_disconnect_ex(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_overlapped` overlapped, int flags) Close connection to a socket and allow the socket handle to be reused. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - conencted socket descriptor * - overlapped - **overlapped** object or RPC_NULL * - flags - customize behavior of operation .. rubric:: Returns: Value returned by **DisconnectEx()** .. index:: pair: function; rpc_wsa_accept .. _doxid-group__te__lib__rpc__winsock2_1ga71ab28302abbf6702823cfd4e1754d78: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_accept(:ref:`rcf_rpc_server`* rpcs, int s, struct sockaddr* addr, socklen_t* addrlen, socklen_t raddrlen, :ref:`accept_cond`* cond, int cond_num) **WSAAccept()** with condition function support. List of conditions describes the condition function behavior. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle (IN) * - s - listening socket descriptor (IN) * - addr - pointer to a sockaddr structure containing the address of the peer entity (OUT) * - addrlen - pointer to the length of the address **addr** * - raddrlen - real length of the address **addr** * - cond - specified condition that makes decision based on the caller information passed in as parameters. * - cond_num - number of conditions .. rubric:: Returns: New connected socket upon successful completion, otherwise -1 is returned .. index:: pair: function; rpc_accept_ex .. _doxid-group__te__lib__rpc__winsock2_1ga32647eef64f6648e912040a00e6c342b: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_accept_ex(:ref:`rcf_rpc_server`* rpcs, int s, int s_a, rpc_ptr buf, size_t len, size_t laddr_len, size_t raddr_len, size_t* bytes_received, :ref:`rpc_overlapped` overlapped) Client implementation of AcceptEx()- **GetAcceptExSockAddr()** call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - s - descriptor of socket that has already been called with the listen function * - s_a - descriptor idenfifying a socket on which to accept an incoming connection * - buf - RPC pointer to the buffer to receive data * - len - length of the buffer to receive data (should not include the size of local and remote addresses) * - laddr_len - length of the local address * - raddr_len - length of the remote address * - bytes_received - number of received data bytes * - overlapped - **overlapped** object or RPC_NULL .. rubric:: Returns: Value returned by AcceptEx() function. .. index:: pair: function; rpc_accept_ex_buflen .. _doxid-group__te__lib__rpc__winsock2_1gacc7ffbce8c26223a8f19fbbdf78e095f: .. ref-code-block:: cpp :class: doxyrest-title-code-block static size_t rpc_accept_ex_buflen(:ref:`rcf_rpc_server`* rpcs, size_t datalen) Calculate length of buffer to be allocated for :ref:`rpc_accept_ex() `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - datalen - space required for data .. rubric:: Returns: Amount of space required for data and addresses. .. index:: pair: function; rpc_get_accept_addr_gen .. _doxid-group__te__lib__rpc__winsock2_1gad8ca0d1f29c2f780e827fcc9dbe74a1e: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_get_accept_addr_gen(:ref:`rcf_rpc_server`* rpcs, int s, rpc_ptr buf, size_t len, size_t laddr_len, size_t raddr_len, struct sockaddr* laddr, size_t* l_sa_len, struct sockaddr* raddr, size_t* r_sa_len) **GetAcceptExSockAddr()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - s - descriptor of socket that was passed to :ref:`rpc_accept_ex() ` fuinction as 3d parameter * - buf - pointer to a buffer passed to :ref:`rpc_wsa_get_overlapped_result() ` * - len - buffer size passed to AcceptEx() * - laddr_len - length of the local address passed to AcceptEx() * - raddr_len - length of the remote address passed to AcceptEx() * - laddr - local address returned by GetAcceptExSockAddr() * - l_sa_len - LocalSockaddrLen (passed transparently) * - raddr - remote address returned by GetAcceptExSockAddr() * - r_sa_len - RemoteSockaddrLen (passed transparently) .. index:: pair: function; rpc_get_accept_addr .. _doxid-group__te__lib__rpc__winsock2_1ga807dcf28d88482b3e03758a7aaafe4c6: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void rpc_get_accept_addr(:ref:`rcf_rpc_server`* rpcs, int s, rpc_ptr buf, size_t len, struct sockaddr* laddr, struct sockaddr* raddr) **GetAcceptExSockAddr()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - s - descriptor of socket that was passed to :ref:`rpc_accept_ex() ` fuinction as 3d parameter * - buf - pointer to a buffer passed to :ref:`rpc_wsa_get_overlapped_result() ` * - len - buffer size wich was passed to :ref:`rpc_accept_ex() ` * - laddr - local address returned by GetAcceptExSockAddr() * - raddr - remote address returned by GetAcceptExSockAddr() .. index:: pair: function; rpc_transmit_packets .. _doxid-group__te__lib__rpc__winsock2_1ga5c10d676c545ffd8191a3779e67f2644: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_transmit_packets(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`tarpc_transmit_packets_element`* data, ssize_t element_count, ssize_t send_size, :ref:`rpc_overlapped` overlapped, ssize_t flags) Transmit data over a connected socket. Data can be transferred from memory or from file(s). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - connected socket descriptor * - data - structure describing data sources * - element_count - quantity of data sources * - send_size - size of data sent by one pass * - overlapped - **overlapped** object or RPC_NULL * - flags - call flags .. rubric:: Returns: ``true`` if data were successfully sent, ``false`` if some error occurred (and errno is set to respective value) .. index:: pair: function; rpc_transmit_file .. _doxid-group__te__lib__rpc__winsock2_1gad8bd84e6617267efe85723ff9bb53599: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_transmit_file(:ref:`rcf_rpc_server`* rpcs, int s, int file, ssize_t len, ssize_t len_per_send, :ref:`rpc_overlapped` overlapped, void* head, ssize_t head_len, void* tail, ssize_t tail_len, ssize_t flags) Transmit file data over a connected socket. This function uses the operating system cache manager to retrive the file data, and perform high-performance file data transfert over sockets. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - connected socket descriptor * - file - handle of the file containing the data to be transmited; should be got by :ref:`rpc_create_file() `. * - len - length of data to transmit * - len_per_send - size of each block of data in each send operation. * - overlapped - **overlapped** object or RPC_NULL * - head - pointer to a buffer to be transmitted before file data is transmitted * - head_len - size of buffer **head** * - tail - pointer to a buffer to be transmitted after transmission of file data. * - tail_len - size of buffer **tail** * - flags - call flags (See **Transmit** file for more information) .. rubric:: Returns: Value returned by **TransmitFile()** .. index:: pair: function; rpc_transmitfile_tabufs .. _doxid-group__te__lib__rpc__winsock2_1ga16d83601c339e6cdfe2c467f43f7639b: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_transmitfile_tabufs(:ref:`rcf_rpc_server`* rpcs, int s, int file, ssize_t len, ssize_t bytes_per_send, :ref:`rpc_overlapped` overlapped, rpc_ptr head, ssize_t head_len, rpc_ptr tail, ssize_t tail_len, ssize_t flags) Transmit file data over a connected socket. This function uses the operating system cache manager to retrive the file data, and perform high-performance file data transfert over sockets. ATTENTION: when using the overlapped I/O the supplied buffers **head** and **tail** will be freed when you call :ref:`rpc_wsa_get_overlapped_result() `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - s - connected socket descriptor. * - file - handle of the file containing the data to be transmited; should be got by :ref:`rpc_create_file() `. * - len - amount of file data to transmit. * - bytes_per_send - size of each block of data in each send operation. * - overlapped - **overlapped** object or RPC_NULL * - head - a pointer valid in the TA virtual address space and pointing to a buffer to be transmitted before the file data. * - head_len - size of buffer **head**. * - tail - a pointer valid in the TA virtual address space and pointing to a buffer to be transmitted after the file data. * - tail_len - size of buffer **tail**. * - flags - **TransmitFile** call flags. .. rubric:: Returns: ``true`` in case of success, ``false`` otherwise. .. index:: pair: function; rpc_create_file .. _doxid-group__te__lib__rpc__winsock2_1ga33cea76cf5f8bf9aa507b8bfbb0410cd: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_create_file(:ref:`rcf_rpc_server`* rpcs, char* name, :ref:`rpc_cf_access_right` desired_access, rpc_cf_share_mode share_mode, rpc_ptr security_attributes, rpc_cf_creation_disposition creation_disposition, rpc_cf_flags_attributes flags_attributes, int template_file) **CreateFile()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - name - Null-terminated string - the name of object to create or open. * - desired_access - The access to object. * - share_mode - The sharing mode of object. * - security_attributes - TA-side pointer to a Windows SECURITY_ATTRIBUTES structure. * - creation_disposition - An action to take on files that exist and do not exist. * - flags_attributes - The file attributes and flags. * - template_file - TA-side handle to a template file. .. rubric:: Returns: TA-side handle of the object, otherwise -1. .. index:: pair: function; rpc_closesocket .. _doxid-group__te__lib__rpc__winsock2_1gab88c444d31665a52ce39c729a084c08a: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_closesocket(:ref:`rcf_rpc_server`* rpcs, int s) **closesocket()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - Socket to close .. rubric:: Returns: Non-zero on success, zero otherwise. .. index:: pair: function; rpc_cancel_io .. _doxid-group__te__lib__rpc__winsock2_1gad87d8116205881cff74abf2e77654bff: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_cancel_io(:ref:`rcf_rpc_server`* rpcs, int fd) **CancelIo()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - File handle which requests to be cancelled belong to .. rubric:: Returns: ``true`` (success) or ``false`` (failure) .. index:: pair: function; rpc_has_overlapped_io_completed .. _doxid-group__te__lib__rpc__winsock2_1ga7a8101b8b3600b4f7c41f18fe187ee1c: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_has_overlapped_io_completed(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_overlapped` overlapped) **HasOverlappedIoCompleted()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - overlapped - **overlapped** object or RPC_NULL .. rubric:: Returns: ``true`` if overlapped I/O has completed, ``false`` otherwise. .. index:: pair: function; rpc_create_io_completion_port .. _doxid-group__te__lib__rpc__winsock2_1gad113cffe03bbf9687c1eb697328afdb3: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_create_io_completion_port(:ref:`rcf_rpc_server`* rpcs, int file_handle, int existing_completion_port, uint64_t completion_key, unsigned int number_of_concurrent_threads) **CreateIoCompletionPort()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - file_handle - Handle of a file/socket opened for overlapped I/O * - existing_completion_port - Handle of the existing completion port. * - completion_key - Per-file completion key. * - number_of_concurrent_threads - Maximum number of thread that the OS can allow to concurrently process completion packets for the I/O completion port. .. rubric:: Returns: Completion port handle on success, ``0`` otherwise .. index:: pair: function; rpc_get_queued_completion_status .. _doxid-group__te__lib__rpc__winsock2_1gaa90a73fc9f238f28700ab7c0d2ac6e1d: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_get_queued_completion_status(:ref:`rcf_rpc_server`* rpcs, int completion_port, size_t* number_of_bytes, uint64_t* completion_key, :ref:`rpc_overlapped`* overlapped, unsigned int milliseconds) **GetQueuedCompletionStatus()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - completion_port - Handle of the existing completion port * - number_of_bytes - Where to store the number of bytes transferred during the I/O operation * - completion_key - Where to store the completion key value associated with the file handle whose I/O has completed * - overlapped - **overlapped** object or RPC_NULL * - milliseconds - Timeout to wait for the I/O completion. .. rubric:: Returns: Non-zero on success, zero otherwise .. index:: pair: function; rpc_post_queued_completion_status .. _doxid-group__te__lib__rpc__winsock2_1gaa5af6828efcf4bd317cc1a3c921a09aa: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_post_queued_completion_status(:ref:`rcf_rpc_server`* rpcs, int completion_port, unsigned int number_of_bytes, uint64_t completion_key, :ref:`rpc_overlapped` overlapped) **PostQueuedCompletionStatus()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - completion_port - Handle of the existing completion port * - number_of_bytes - Number of bytes transferred * - completion_key - Completion key value * - overlapped - **overlapped** object or RPC_NULL .. rubric:: Returns: Non-zero on success, zero otherwise .. index:: pair: function; rpc_get_current_process_id .. _doxid-group__te__lib__rpc__winsock2_1ga3d1ff6bf6d892f6889acefe4cc7a9967: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_get_current_process_id(:ref:`rcf_rpc_server`* rpcs) **GetCurrentProcessId()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: The specified RPC server process identifier. .. index:: pair: function; rpc_get_sys_info .. _doxid-group__te__lib__rpc__winsock2_1ga18f406b8539bfdf5b77b2b8e75afa29a: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_get_sys_info(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_sys_info`* sys_info) Get various system information of the host where the specified RPC server runs. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - sys_info - where to store the obtained system information. .. index:: pair: function; rpc_wsa_recv_ex .. _doxid-group__te__lib__rpc__winsock2_1gabad65afe1900e0dda2791d3f686f72a4: .. ref-code-block:: cpp :class: doxyrest-title-code-block ssize_t rpc_wsa_recv_ex(:ref:`rcf_rpc_server`* rpcs, int s, void* buf, size_t len, :ref:`rpc_send_recv_flags`* flags, size_t rbuflen) **WSARecvEx()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - socket descriptor * - buf - pointer to a buffer containing the incoming data * - len - Maximum length of expected data * - flags - specify whether data is fully or partially received * - rbuflen - real size of buffer **buf** .. rubric:: Returns: Number of bytes received upon successful completion. If the connection has been close it returned zero. Otherwise -1 is returned. .. index:: pair: function; rpc_create_event .. _doxid-group__te__lib__rpc__winsock2_1gae4faae5d21bb1366f5cc7f509300f666: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_wsaevent` rpc_create_event(:ref:`rcf_rpc_server`* rpcs) Create a new event object. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: Upon successful completion this function returns an **rpc_wsaevent** structure handle, otherwise NULL is returned .. index:: pair: function; rpc_create_event_with_bit .. _doxid-group__te__lib__rpc__winsock2_1ga3298f6d308217763eff8fce45941bf55: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_wsaevent` rpc_create_event_with_bit(:ref:`rcf_rpc_server`* rpcs) Create a new event object and set lower bit. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: Upon successful completion this function returns an **rpc_wsaevent** structure handle, otherwise NULL is returned .. index:: pair: function; rpc_close_event .. _doxid-group__te__lib__rpc__winsock2_1ga220e859f229c59365eecf7980dae01fe: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_close_event(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_wsaevent` hevent) Close an open event object handle. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hevent - handle of the event to be close .. rubric:: Returns: value returned by **WSACloseEvent()** .. index:: pair: function; rpc_reset_event .. _doxid-group__te__lib__rpc__winsock2_1ga315947b3bc18995d104d78e4b3fde48c: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_reset_event(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_wsaevent` hevent) Reset the state of the specified event object to non-signaled. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hevent - event object handle .. rubric:: Returns: Value returned by **WSAResetEvent()** .. index:: pair: function; rpc_set_event .. _doxid-group__te__lib__rpc__winsock2_1gac4e142a0f928c8f1fe8d81f17c223753: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_set_event(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_wsaevent` hevent) Set the state of the specified event object to signaled. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hevent - event object handle .. rubric:: Returns: Value returned by **WSASetEvent()** .. index:: pair: function; rpc_wsa_address_to_string .. _doxid-group__te__lib__rpc__winsock2_1ga11ebaab02c97795d17fb90f73c807a74: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_address_to_string(:ref:`rcf_rpc_server`* rpcs, struct sockaddr* addr, socklen_t addrlen, uint8_t* info, int info_len, char* addrstr, ssize_t* addrstr_len) Convert a **sockaddr** structure to its string representation. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - addr - pointer to the **sockaddr** structure to be converted * - addrlen - length of the address **addr** * - info - pointer to an object which is associated with the provider to be used or **NULL** * - info_len - length of object **info** (if not NULL) * - addrstr - buffer that contain the string representation of the specified address (OUT) * - addrstr_len - length of buffer **addrstr** .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_string_to_address .. _doxid-group__te__lib__rpc__winsock2_1ga4469a604b977fb10ea3f3bf5b0641cc9: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_string_to_address(:ref:`rcf_rpc_server`* rpcs, char* addrstr, :ref:`rpc_socket_domain` address_family, uint8_t* info, int info_len, struct sockaddr* addr, socklen_t* addrlen) Convert a numeric string to a **sockaddr** structure. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - addrstr - numeric address string * - address_family - address family to which the string belongs * - info - pointer to an object which is associated with the provider to be used or NULL * - info_len - length of object **info** (if not null) * - addr - pointer to a **sockaddr** structure that receive the converted address. * - addrlen - points to the length of **addr** .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_cancel_async_request .. _doxid-group__te__lib__rpc__winsock2_1gac877b6e6b43600acc53c1fa96f6b3b78: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_cancel_async_request(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_handle` async_task_handle) Cancel an incomplete asynchronous task. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - async_task_handle - task to be canceled .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_alloc_wsabuf .. _doxid-group__te__lib__rpc__winsock2_1ga469c2e3dbb51c93c76b53a2853970fc3: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_alloc_wsabuf(:ref:`rcf_rpc_server`* rpcs, size_t len, rpc_ptr* wsabuf, rpc_ptr* wsabuf_buf) Allocate a WSABUF structure, a buffer of specified length and fill in the fields of allocated structure according to the allocated buffer pointer and length in the TA address space. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - len - length of WSABUF buffer field * - wsabuf - pointer to a WSABUF structure * - wsabuf_buf - pointer to the buffer whose length is **len** .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_free_wsabuf .. _doxid-group__te__lib__rpc__winsock2_1gaf799a300b5d66711a3fc6576ce76c45e: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_free_wsabuf(:ref:`rcf_rpc_server`* rpcs, rpc_ptr wsabuf) Free a previously allocated by **rpc_alloc_wsabuf** buffer. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - wsabuf - pointer to the buffer to be freed .. index:: pair: function; rpc_wsa_connect .. _doxid-group__te__lib__rpc__winsock2_1ga0b06ef888871a440d3b4afb7e921812e: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_connect(:ref:`rcf_rpc_server`* rpcs, int s, const struct sockaddr* addr, rpc_ptr caller_wsabuf, rpc_ptr callee_wsabuf, :ref:`rpc_qos`* sqos) **WSAConnect()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - Descriptor identifying an unconnected socket * - addr - pointer to a **sockaddr** structure containing the address to connect to * - caller_wsabuf - TA virtual address space valid pointer to a WSABUF structure describing the user data that is to be transferred to the other socket during connection establishment * - callee_wsabuf - TA virtual address space valid pointer to a WSABUF structure describing the user data that is to be transferred back from the other socket during connection establishment. * - sqos - TA virtual address space valid pointer to a QOS structure for socket **s**. .. rubric:: Returns: 0 in case of success, nonzero otherwise. .. index:: pair: function; rpc_wsa_ioctl .. _doxid-group__te__lib__rpc__winsock2_1gaf0c6ead9fdf79a66afa9b40b0a18586b: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_ioctl(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_ioctl_code` control_code, char* inbuf, unsigned int inbuf_len, char* outbuf, unsigned int outbuf_len, size_t* bytes_returned, :ref:`rpc_overlapped` overlapped, const char* callback) **WSAIoctl()** remote call. If input/output argument is list of addresses, buffer should contain array of sockaddr_storage structures. If input/output argument is QOS, rpc_qos structure should be in the buffer. If input/output argument is keepalive or GUID, corresponding tarpc\_\* structures should be in the buffer. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - Descriptor identifying a socket * - control_code - Control code of operation to perform * - inbuf - Pointer to the input buffer with correct data * - inbuf_len - Size of the input buffer to be passed to WSAIoctl() * - outbuf - Pointer to the output buffer big enough to decode any result (if length of decoded result is greater than RPC_WSA_IOCTL_OUTBUF_MAX, error is returned) * - outbuf_len - Size of the output buffer to be passed to WSAIoctl() * - bytes_returned - Pointer to the actual number of bytes of output (filled by WSAIoctl()) * - overlapped - **overlapped** object or RPC_NULL * - callback - completion callback name .. rubric:: Returns: 0 in case of success, nonzero otherwise. .. index:: pair: function; rpc_get_wsa_ioctl_overlapped_result .. _doxid-group__te__lib__rpc__winsock2_1gaf10f936c3fb7ee7e0f0d87e9af55b192: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_get_wsa_ioctl_overlapped_result(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_overlapped` overlapped, int* bytes, bool wait, :ref:`rpc_send_recv_flags`* flags, char* buf, :ref:`rpc_ioctl_code` control_code) Retrieve the result of the preceding overlapped WSAIoctl() call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - desccriptor identifying a socket * - overlapped - **overlapped** object or RPC_NULL * - bytes - pointer to the variable that will accept the number of bytes returned in **buf** * - wait - specifies whether the function should wait for the overlapped operation to complete (should wait, if ``true``) * - flags - pointer to a variable that will receive one or more flags that supplement the completion status * - buf - pointer to a buffer containing result data * - control_code - the control code the preceding WSAIoctl() call has been called with .. rubric:: Returns: Nonzero in case of success, otherwise 0. .. index:: pair: function; rpc_wsa_async_get_host_by_addr .. _doxid-group__te__lib__rpc__winsock2_1ga27d3d7fe085a465a15630cc30cb0c1ae: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_handle` rpc_wsa_async_get_host_by_addr(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, char* addr, ssize_t addrlen, :ref:`rpc_socket_type` type, rpc_ptr buf, ssize_t buflen) Asynchronously retrieve host information by given address. See **WSAAsyncGetHostByAddr()**. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hwnd - handle to a window that receive a message when the asynchronous request completes * - wmsg - message to be received when asynchronous request completes * - addr - pointer to the network address of the host * - addrlen - size of *addr* * - type - type of the address * - buf - valid buffer pointer in the TA address space. Contain the host entry data * - buflen - size of the buffer **buf**, in bytes .. rubric:: Returns: Value returned by **WSAAsyncGetHostByAddr()** .. index:: pair: function; rpc_wsa_async_get_host_by_name .. _doxid-group__te__lib__rpc__winsock2_1gaca0542a7419946b1e2aaffb91e09c002: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_handle` rpc_wsa_async_get_host_by_name(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, char* name, rpc_ptr buf, ssize_t buflen) Asynchronously retrieve host information by given name. See **WSAAsyncGetHostByName()**. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hwnd - handle to a window that receive a message when the asynchronous request completes * - wmsg - message to be received when asynchronous request completes * - name - pointer to the host name * - buf - valid buffer pointer in the TA address space. Contain the host entry data * - buflen - size of the buffer **buf**, in bytes .. rubric:: Returns: Value returned by **WSAAsyncGetHostByName()** .. index:: pair: function; rpc_wsa_async_get_proto_by_name .. _doxid-group__te__lib__rpc__winsock2_1gae37b64cb7780765ca6da980bf5c95fb2: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_handle` rpc_wsa_async_get_proto_by_name(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, char* name, rpc_ptr buf, ssize_t buflen) Asynchronously retrieve protocol information by given name. See **WSAAsyncGetProtoByName()**. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hwnd - handle to a window that receive a message when the asynchronous request completes * - wmsg - message to be received when asynchronous request completes * - name - pointer to a null-terminated protocol name * - buf - valid buffer pointer in the TA address space. Contain the protocol entry data * - buflen - size of the buffer **buf**, in bytes .. rubric:: Returns: Value returned by **WSAAsyncGetProtoByName()** .. index:: pair: function; rpc_wsa_async_get_proto_by_number .. _doxid-group__te__lib__rpc__winsock2_1ga0e5a024e4f03d6f3dfa7709ede9dadf9: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_handle` rpc_wsa_async_get_proto_by_number(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, int number, rpc_ptr buf, ssize_t buflen) Asynchronously retrieve protocol information by given number. See **WSAAsyncGetProtoByNumber()**. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hwnd - handle to a window that receive a message when the asynchronous request completes * - wmsg - message to be received when asynchronous request completes * - number - protocol number in host byte order * - buf - valid buffer pointer in the TA address space. Contain the protocol entry data * - buflen - size of the buffer **buf**, in bytes .. rubric:: Returns: Value returned by **WSAAsyncGetProtoByNumber()** .. index:: pair: function; rpc_wsa_async_get_serv_by_name .. _doxid-group__te__lib__rpc__winsock2_1ga0a2b85f5b7c90ed01095f6fe8e592bce: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_handle` rpc_wsa_async_get_serv_by_name(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, char* name, char* proto, rpc_ptr buf, ssize_t buflen) Asynchronously retrieve service information that corresponds to a service name. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hwnd - handle to a window that receive a message when the asynchronous request completes * - wmsg - message to be received when asynchronous request completes * - name - pointer to a null-terminated service name * - proto - pointer to a protocol name * - buf - valid buffer pointer in the TA address space. Contain the service entry data * - buflen - size of the buffer **buf**, in bytes .. rubric:: Returns: Value returned by **WSAAsyncGetServByName()** .. index:: pair: function; rpc_wsa_async_get_serv_by_port .. _doxid-group__te__lib__rpc__winsock2_1gac020bee25de2678287137cbe78b503ea: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_handle` rpc_wsa_async_get_serv_by_port(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, unsigned int wmsg, int port, char* proto, rpc_ptr buf, ssize_t buflen) Asynchronously retrieve service information that corresponds to a port and protocol. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hwnd - handle to a window that receive a message when the asynchronous request completes * - wmsg - message to be received when asynchronous request completes * - port - port for the service * - proto - pointer to a protocol name * - buf - valid buffer pointer in the TA address space. Contain the service entry data * - buflen - size of the buffer **buf**, in bytes .. rubric:: Returns: value returned by **WSAAsyncGetServByName()** .. index:: pair: function; rpc_create_overlapped .. _doxid-group__te__lib__rpc__winsock2_1ga480ba30e3e06a525a9718824e8f33ee8: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_overlapped` rpc_create_overlapped(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_wsaevent` hevent, unsigned int offset, unsigned int offset_high, ...) Create WSAOVERLAPPED structure on TA side. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hevent - handle to an event object * - offset - position at which to start the transfert * - offset_high - high-order word of the position at which to start the transfert * - ... - cookie1 and cookie2 may be passed .. rubric:: Returns: WSAOVERLAPPED structure upon successful completion or RPC_NULL .. index:: pair: function; rpc_delete_overlapped .. _doxid-group__te__lib__rpc__winsock2_1ga23b61647d7e4dfb3ebf4e5e46ec7d885: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_delete_overlapped(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_overlapped` overlapped) Delete specified WSAOVERLAPPED structure. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - overlapped - **overlapped** object .. index:: pair: function; rpc_wsa_send .. _doxid-group__te__lib__rpc__winsock2_1gac5a6d9efb34ee7234921450559aecf47: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_send(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`rpc_send_recv_flags` flags, ssize_t* bytes_sent, :ref:`rpc_overlapped` overlapped, const char* callback) Send data on a connected socket. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - connected socket descriptor * - iov - pointer to a vector of buffers containing the data to be sent * - iovcnt - number of buffers in the vector * - flags - modifies the behavior of the call. * - bytes_sent - pointer to the number of bytes sent * - overlapped - **overlapped** object or RPC_NULL * - callback - completion callback name .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_recv .. _doxid-group__te__lib__rpc__winsock2_1ga2dc8fecc5fa19fb283e7785e415fc380: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_recv(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, size_t riovcnt, :ref:`rpc_send_recv_flags`* flags, ssize_t* bytes_received, :ref:`rpc_overlapped` overlapped, const char* callback) Receive data from a connected socket. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - connected socket descriptor * - iov - pointer to a vector of buffers where received data have to be stored * - iovcnt - number of buffers in the vector **iov** * - riovcnt - number of buffers to receive * - flags - modifies the behavior of the call. (See **rpc_send_recv_flags**) * - bytes_received - pointer to the number of bytes received * - overlapped - **overlapped** object or RPC_NULL * - callback - completion callback name .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_send_to .. _doxid-group__te__lib__rpc__winsock2_1ga9c0ef396ae3985e62b0587315dccc777: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_send_to(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`rpc_send_recv_flags` flags, ssize_t* bytes_sent, const struct sockaddr* to, :ref:`rpc_overlapped` overlapped, const char* callback) Send data to a specified destination. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - descriptor identifying a possibly connected socket * - iov - pointer to a vector of buffers containing the data to be sent * - iovcnt - number of buffer in the vector **iov** * - flags - modifies the behavior of the call. (See **rpc_send_recv_flags**) * - bytes_sent - pointer to the number of bytes sent * - to - pointer to the address of the target socket * - overlapped - **overlapped** object or RPC_NULL * - callback - completion callback name .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_recv_from .. _doxid-group__te__lib__rpc__winsock2_1gafb050c9b669b527d23ef7badf51963b7: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_recv_from(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, size_t riovcnt, :ref:`rpc_send_recv_flags`* flags, ssize_t* bytes_received, struct sockaddr* from, socklen_t* fromlen, :ref:`rpc_overlapped` overlapped, const char* callback) Receive datagram from socket. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - descriptor identifying a socket * - iov - pointer to a vector of buffers where received data have to be stored * - iovcnt - number of buffers in the vector **iov** * - riovcnt - number of buffers to receive * - flags - modifies the behavior of the call. (See **rpc_send_recv_flags**) * - bytes_received - pointer to the number of bytes received * - from - pointer to a buffer that hold the source address upon the completion of overlapped operation * - fromlen - size of the address **from** * - overlapped - **overlapped** object or RPC_NULL * - callback - completion callback name .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_send_disconnect .. _doxid-group__te__lib__rpc__winsock2_1gadb510c97f55c2d41f52c4e530d24e0af: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_send_disconnect(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov) Initiate termination of the connection for the socket and send disconnect data. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - descriptor identifying a socket * - iov - vector of buffers containing the disconnect data .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_recv_disconnect .. _doxid-group__te__lib__rpc__winsock2_1ga07f9b50cb1d103080e3f74efc2c4f462: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_recv_disconnect(:ref:`rcf_rpc_server`* rpcs, int s, const struct :ref:`rpc_iovec`* iov) Terminate reception on a socket, and retrieve disconnect data in case of connection oriented socket. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - descriptor identifying a socket * - iov - vector of buffers containing the disconnect data .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_recv_msg .. _doxid-group__te__lib__rpc__winsock2_1ga7f566b7bf085e81194b352754a25e303: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_recv_msg(:ref:`rcf_rpc_server`* rpcs, int s, struct :ref:`rpc_msghdr`* msg, ssize_t* bytes_received, :ref:`rpc_overlapped` overlapped, const char* callback) Retrieve data and control information from connected or unconnected sockets. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - descriptor identifying a socket * - msg - pointer to a :ref:`rpc_msghdr ` structure containing received data * - bytes_received - pointer to the number of bytes received * - overlapped - **overlapped** object or RPC_NULL * - callback - completion callback name .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_wsa_get_overlapped_result .. _doxid-group__te__lib__rpc__winsock2_1gaed0bd8b790b9236600e80afc4174cf5f: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_wsa_get_overlapped_result(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_overlapped` overlapped, size_t* bytes, bool wait, :ref:`rpc_send_recv_flags`* flags, char* buf, int buflen) Retrieve the result of an overlapped operation on a specified socket. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - desccriptor identifying a socket * - overlapped - **overlapped** object or RPC_NULL * - bytes - pointer to the number of bytes that were transfered by a send or receive operation * - wait - specifies whether the function should wait for the overlapped operation to complete (should wait, if ``true``) * - flags - pointer to a variable that will receive one or more flags that supplement the completion status * - buf - pointer to a buffer containing result data * - buflen - size of buffer **buf** .. rubric:: Returns: ``true`` on success, ``false`` on failure .. index:: pair: function; rpc_completion_callback .. _doxid-group__te__lib__rpc__winsock2_1gafe9299ded5e19ec493bd0229d925ca8d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_completion_callback(:ref:`rcf_rpc_server`* rpcs, int* called, int* error, ssize_t* bytes, :ref:`rpc_overlapped`* overlapped) Get result of completion callback (if called). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - called - number of callback calls since last call of this function * - bytes - number of tramsmitted bytes reported to last callback * - error - overlapped operation error reported to the last callback * - overlapped - overlapped object reported to the last callback .. rubric:: Returns: 0 (success) or -1 (failure) .. index:: pair: function; rpc_cleanup_completion_callback .. _doxid-group__te__lib__rpc__winsock2_1ga354af15f68b32e5a6ec68659675a5eea: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void rpc_cleanup_completion_callback(:ref:`rcf_rpc_server`* rpcs) Cleanup completion callback statistics. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. index:: pair: function; rpc_wsa_event_select .. _doxid-group__te__lib__rpc__winsock2_1gab973049cfd896543361c5657a1f293c2: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_event_select(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_wsaevent` event_object, :ref:`rpc_network_event` event) Specify an event object to be associated with the specified set of network events. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - socket descriptor * - event_object - event object * - event - bitmask the specifies the combination of network events .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_enum_network_events .. _doxid-group__te__lib__rpc__winsock2_1gaa7413b41c985d863c38797f636d4e9cf: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_enum_network_events(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_wsaevent` event_object, struct :ref:`tarpc_network_events`* events) **WSAEnumNetworkEvents()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - s - socket descriptor * - event_object - event object to be reset * - events - network events that occurred .. rubric:: Returns: Value returned by WSAEnumNetworkEvents() function .. index:: pair: function; wsa_wait_rpc2str .. _doxid-group__te__lib__rpc__winsock2_1gae21316dfe8eddb28e1fc79afa56404bb: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const char* wsa_wait_rpc2str(int code) Convert **WSAWaitForMultipleEvents()** return code to a string .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - code - code to be converted .. rubric:: Returns: string representation of the event .. index:: pair: function; rpc_wait_for_multiple_events .. _doxid-group__te__lib__rpc__winsock2_1ga95299f4ae8fa2df852da41f45dcab1f7: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wait_for_multiple_events(:ref:`rcf_rpc_server`* rpcs, int count, :ref:`rpc_wsaevent`* events, bool wait_all, uint32_t timeout, bool alertable) **WSAWaitForMultipleEvents()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - count - number of events in **events** * - events - pointer to an array of events * - wait_all - wait type, when ``true`` the function return when the state of all events is signaled * - timeout - time-out interval, milliseconds. If the interval expires, the function return. If **timeout** is zero the function tests the state of specified event objects and returns immediately. If **timeout** is WSA_INFINITE, the time-out interval never expires. * - alertable - specify whether the completion routine has to be executed before the function returns. .. rubric:: Returns: The event object that make the function to return. -1 is returned in the case of RPC error .. index:: pair: function; rpc_create_window .. _doxid-group__te__lib__rpc__winsock2_1ga9ed438f05b777b470f5cb51377a60334: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_hwnd` rpc_create_window(:ref:`rcf_rpc_server`* rpcs) Create a window for receiving event notifications. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: handle of the created window, upon successful completion, otherwise NULL is returned .. index:: pair: function; rpc_destroy_window .. _doxid-group__te__lib__rpc__winsock2_1gae5061776de824409dcbb454b7ac1e55f: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_destroy_window(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd) Destroy the specified window. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hwnd - handle of window to be destroyed .. index:: pair: function; rpc_wsa_async_select .. _doxid-group__te__lib__rpc__winsock2_1ga2f6263b9f2be924dde758feeea5b857e: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_async_select(:ref:`rcf_rpc_server`* rpcs, int s, :ref:`rpc_hwnd` hwnd, :ref:`rpc_network_event` event) Request window-based notification of network events for a socket. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - socket descriptor * - hwnd - handle of the window which receives message when a network event occurs * - event - bitmask that specifies a combination of network events .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_peek_message .. _doxid-group__te__lib__rpc__winsock2_1gafde99870ab42430badbd755a54439065: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_peek_message(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_hwnd` hwnd, int* s, :ref:`rpc_network_event`* event) Check the thread message queue for a posted message and retrieve the message, if any exist .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - hwnd - handle of the windows whose messages are to be examinied * - s - socket descriptor whose event causes message notification * - event - pointer to the bitmask that specifies a combination of network events .. rubric:: Returns: Value returned by **PeekMessage()** .. index:: pair: function; rpc_is_winsock2 .. _doxid-group__te__lib__rpc__winsock2_1ga42a8e20d50e1a149d90d78a704d1eb99: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_is_winsock2(:ref:`rcf_rpc_server`* rpcs) Check, if RPC server is located on TA with winsock2. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: ``true``, if it is definitely known that winsock2 is used and ``false`` otherwise .. index:: pair: function; rpc_wsa_join_leaf .. _doxid-group__te__lib__rpc__winsock2_1ga0d8176013c19604e2f9f319a2b540315: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_wsa_join_leaf(:ref:`rcf_rpc_server`* rpcs, int s, const struct sockaddr* addr, rpc_ptr caller_wsabuf, rpc_ptr callee_wsabuf, :ref:`rpc_qos`* sqos, :ref:`rpc_join_leaf_flags` flags) Joins a leaf node into a multipoint session. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - s - Descriptor identifying an unconnected socket * - addr - pointer to a **sockaddr** structure containing the address to connect to * - caller_wsabuf - TA virtual address space valid pointer to a WSABUF structure describing the user data that is to be transferred to the other socket during connection establishment * - callee_wsabuf - TA virtual address space valid pointer to a WSABUF structure describing the user data that is to be transferred back from the other socket during connection establishment. * - sqos - TA virtual address space valid pointer to a QOS structure for socket **s**. * - flag - Flag to indicate that the socket is acting as a sender (JL_SENDER_ONLY), receiver (JL_RECEIVER_ONLY), or both (JL_BOTH). .. rubric:: Returns: The value of type SOCKET that is a descriptor for the newly created multipoint socket in case of success, a value of INVALID_SOCKET otherwise. .. index:: pair: function; rpc_read_file .. _doxid-group__te__lib__rpc__winsock2_1gab89d98e4f2f12aa160f5724b851e36fc: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_read_file(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, size_t* received, :ref:`rpc_overlapped` overlapped) **ReadFile()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - buffer for data * - count - number of bytes to be read * - received - location for number of read bytes * - overlapped - **overlapped** object or RPC_NULL .. rubric:: Returns: ``true`` (success) or ``false`` (failure) .. index:: pair: function; rpc_write_file .. _doxid-group__te__lib__rpc__winsock2_1ga9c743157460db2942852a1538bf2f8d9: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_write_file(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, size_t* sent, :ref:`rpc_overlapped` overlapped) **WriteFile()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - buffer for data * - count - number of bytes to be sent * - sent - location for number of sent bytes * - overlapped - **overlapped** object or RPC_NULL .. rubric:: Returns: ``true`` (success) or ``false`` (failure) .. index:: pair: function; rpc_read_file_ex .. _doxid-group__te__lib__rpc__winsock2_1gac2bd17d1230d3fd45ecc80e7bb3bccdd: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_read_file_ex(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, :ref:`rpc_overlapped` overlapped, const char* callback) **ReadFileEx()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - buffer for data * - count - number of bytes to be read * - overlapped - **overlapped** object or RPC_NULL * - callback - completion callback name .. rubric:: Returns: ``true`` (success) or ``false`` (failure) .. index:: pair: function; rpc_write_file_ex .. _doxid-group__te__lib__rpc__winsock2_1ga6e610a43d2cef55bedd81bd82ec8672d: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool rpc_write_file_ex(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, :ref:`rpc_overlapped` overlapped, const char* callback) **WriteFile()** remote call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - buffer for data * - count - number of bytes to be sent * - overlapped - **overlapped** object or RPC_NULL * - callback - completion callback name .. rubric:: Returns: ``true`` (success) or ``false`` (failure) .. index:: pair: function; rpc_overfill_buffers_ex .. _doxid-group__te__lib__rpc__winsock2_1ga1f458f31080f16e661eb6b0e70ecb95c: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_overfill_buffers_ex(:ref:`rcf_rpc_server`* rpcs, int sock, uint64_t* sent, bool is_nonblocking) Overfill the buffers on receive and send sides of TCP connection. If socket is blocking, it will be set non-blocking inside and changed back on return. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - sock - socket for sending * - sent - total bytes written to sending socket while both sending and receiving side buffers are overfilled * - is_nonblocking - ``true`` if socket is in non-blocking mode, ``false`` otherwise. .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; wsa_name_convert .. _doxid-group__te__lib__rpc__winsock2_1gab63429a70af964252ad18ba0079dd451: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const char* wsa_name_convert(const char* name) Convert WSA function name to RPC name Macros ------ .. index:: pair: define; RCF_RPC_MAX_ACCEPT_CONDS .. _doxid-group__te__lib__rpc__winsock2_1ga9a80b23d6641cab63356bc2d2bf742e0: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RCF_RPC_MAX_ACCEPT_CONDS Maximal number of accept conditions .. index:: pair: define; RPC_WSA_IOCTL_OUTBUF_MAX .. _doxid-group__te__lib__rpc__winsock2_1ga4b1d13030b8e5c18343fab55f2e7621d: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_WSA_IOCTL_OUTBUF_MAX Maximum length of expected result