socket_broadcast(3) debian man page | unix.com

Man Page: socket_broadcast

Operating Environment: debian

Section: 3

socket_broadcast(3)					     Library Functions Manual					       socket_broadcast(3)

NAME
socket_broadcast - set UDP socket to broadcast mode
SYNTAX
#include <socket.h> int socket_broadcast(int s);
DESCRIPTION
socket_broadcast sets UDP socket s to broadcast mode. socket_send4 and socket_send6 will fail to send packets to the broadcast address unless socket_broadcast is called before. Normally socket_broadcast returns 0. If anything goes wrong, socket_broadcast returns -1, setting errno appropriately.
EXAMPLE
#include <socket.h> int s; if ((s=socket_udp6())==-1) strerr_die2sys(111,FATAL,"unable to create UDP socket: "); if (socket_broadcast(s) == -1) strerr_die2sys(111,FATAL,"unable to set broadcast mode: ");
SEE ALSO
socket_send4(3), socket_send6(3) socket_broadcast(3)
Related Man Pages
udp(4) - mojave
ost_udpbroadcast(3) - debian
udp(4) - freebsd
udp(4p) - ultrix
udp(4) - osx
Similar Topics in the Unix Linux Community
Adding the individual columns of a matrix.
How can I do this in VI editor?
Is UNIX an open source OS ?
Find columns in a file based on header and print to new file
How to copy a column of multiple files and paste into new excel file (next to column)?