Back to FabImage Library website
You are here: Start » Function Reference » System » TCP IP » TcpIp_WriteBuffer
Header: | STD.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Outputs a block of raw data through a connected TCP socket.
Syntax
void fil::TcpIp_WriteBuffer ( fil::SocketId inSocket, const fil::ByteBuffer& inBuffer )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inSocket | SocketId | Connected socket ID. | |
![]() |
inBuffer | const ByteBuffer& | Buffer with data to send. |
Description
This filter writes arbitrary bytes to a connected socket.
Data buffer for the inBuffer input can be prepared using filters from the Binary Data category.
This filter can raise IoError when the connection is broken or closed by the other side, when the output buffer overflows because the other side is not receiving data or receiving data too slow, or when other network-related error occurred.
Hints
- Connect inSocket with the output of TcpIp_Connect or TcpIp_Accept.
- Connect the data you want to send to the inBuffer input.
See Also
- TcpIp_ReadLine – Reads from a connected TCP socket until receiving a specific sequence.
- TcpIp_ReadBuffer – Receives a fixed number of bytes from a connected TCP socket.
- TcpIp_WriteText – Outputs a string through a connected TCP socket.