Gio.Socket.prototype.get_available_bytes
function get_available_bytes(): Number(gssize) { // Gjs wrapper for g_socket_get_available_bytes() }
Get the amount of data pending in the OS input buffer.
If socket is a UDP or SCTP socket, this will return the size of just the next packet, even if additional packets are buffered after that one.
Note that on Windows, this function is rather inefficient in the UDP case, and so if you know any plausible upper bound on the size of the incoming packet, it is better to just do a Gio.Socket.prototype.receive with a buffer of that size, rather than calling Gio.Socket.prototype.get_available_bytes first and then doing a receive of exactly the right size.
Since 2.32
- Returns
the number of bytes that can be read from the socket without blocking or truncating, or -1 on error.