WINSOCK SEND MESSAGE
Sends raw data using a channel. Requires a tcp channel with an open connection to work. Otherwise it will lead to a crash. The second parameter is a Dword that points to the start of a memory location, which holds the data you wish to send. You can create such a memory location using MAKE MEMORY(). You need to indicate the exact length in bytes of the data in the third parameter, otherwise your application might crash, especially if indicating a too large number. The memory length may not exceed 8192 bytes.

SYNTAX
WINSOCK SEND MESSAGE tcp_channel as Dword, data_ptr as Dword, data_len as Integer

RELATED INFO
WINSOCK command menu
Index

EXAMPLE
Showcase-example 1
Showcase-example 2