=over =item send SOCKET,MSG,FLAGS,TO X =item send SOCKET,MSG,FLAGS Sends a message on a socket. Attempts to send the scalar MSG to the SOCKET filehandle. Takes the same flags as the system call of the same name. On unconnected sockets, you must specify a destination to I, in which case it does a L syscall. Returns the number of characters sent, or the undefined value on error. The L syscall is currently unimplemented. See L for examples. Note the I: depending on the status of the socket, either (8-bit) bytes or characters are sent. By default all sockets operate on bytes, but for example if the socket has been changed using L|/binmode FILEHANDLE, LAYER> to operate with the C<:encoding(UTF-8)> I/O layer (see L|/open FILEHANDLE,EXPR>, or the L pragma), the I/O will operate on UTF-8 encoded Unicode characters, not bytes. Similarly for the C<:encoding> layer: in that case pretty much any characters can be sent. =back