added new socket send native

This commit is contained in:
Borja Ferrer 2005-12-05 01:49:16 +00:00
parent 389f470662
commit 2ebf822dea

View File

@ -46,6 +46,10 @@ native socket_recv(_socket, _data[], _length);
native socket_send(_socket, _data[], _length);
/* Same as socket_send but Data can contain null bytes */
native socket_send2(_socket, _data[], _length);
/* This function will return true if the state (buffer content) have changed within the last recieve or
* the timeout, where timeout is a value in µSeconds, (1 sec =1000000 µsec).
* Use to check if new data is in your socket. */