mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 21:10:07 +00:00
001426b899
1998-03-30 17:20 Ulrich Drepper <drepper@cygnus.com> * Makerules: Remove duplicate rules to handle stamp.oS. 1998-03-30 Andreas Jaeger <aj@arthur.rhein-neckar.de> * manual/examples/inetsrv.c (main): Change prototype of make_socket following change in mkisock.c. * manual/examples/inetcli.c (SERVERHOST): Use mescaline.gnu.org as example host. (main): Change prototype of init_sockaddr following change in isockadd.c. * manual/examples/mkisock.c (make_socket): Use uint16_t for port. * manual/examples/isockad.c (init_sockaddr): Likewise. * manual/examples/mkfsock.c (make_named_socket): Removed blank lines for clarification. (make_named_socket): Use strncpy instead of strcpy. Reported by Francesco Potorti` <F.Potorti@cnuce.cnr.it>.
45 lines
939 B
C
45 lines
939 B
C
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/un.h>
|
|
|
|
int
|
|
make_named_socket (const char *filename)
|
|
{
|
|
struct sockaddr_un name;
|
|
int sock;
|
|
size_t size;
|
|
|
|
/* Create the socket. */
|
|
sock = socket (PF_UNIX, SOCK_DGRAM, 0);
|
|
if (sock < 0)
|
|
{
|
|
perror ("socket");
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
/* Bind a name to the socket. */
|
|
name.sun_family = AF_FILE;
|
|
strncpy (name.sun_path, filename, sizeof (name.sun_path));
|
|
|
|
/* The size of the address is
|
|
the offset of the start of the filename,
|
|
plus its length,
|
|
plus one for the terminating null byte.
|
|
Alternativly you can just do:
|
|
size = SUN_LEN (&name);
|
|
*/
|
|
size = (offsetof (struct sockaddr_un, sun_path)
|
|
+ strlen (name.sun_path) + 1);
|
|
|
|
if (bind (sock, (struct sockaddr *) &name, size) < 0)
|
|
{
|
|
perror ("bind");
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
return sock;
|
|
}
|