network_send_raw

语法:

network_send_raw(socket, buffer, size);


参数 描述
socket 所使用的套接字id。
buffer 待取数据的缓冲区id。
大小 数据大小(字节形式)。


返回: Real(实数)


描述

With this function you can send a "raw" data packet through the network. The function takes the socket id to connect through and then you must supply the buffer id which contains the data to be sent (for more information on buffers see Reference - Buffers) and finally the size (in bytes) of the data packet. The data sent is not formatted by GameMaker Studio 2 in any way and the receiving devices will get the data as a stream which means you will have to handle it yourself. The function will return the number of bytes of data sent, or a number less than 0 if the send has failed.


例如:

buff = buffer_load("player_save.dat");
network_send_raw(sock, buff, buffer_get_size(buff));

The above information loads a previously saved buffer data into memory and returns the buffer id to be stored in the variable "buff". This complete buffer is then send as a raw data packet over the network using the socket identified by the variable "sock".