⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 servlisten.c

📁 unix高级编程源代码.<<unix高级编程>>
💻 C
字号:
/* Create a server endpoint of a connection. */

#include	<sys/types.h>
#include	<sys/socket.h>
#include	<sys/un.h>
#include	<string.h>
#include	<unistd.h>

int			/* returns fd if all OK, -1 on error */
serv_listen(const char *name)
{
	int					fd, len;
	struct sockaddr_un	unix_addr;

					/* create a Unix domain stream socket */
	if ( (fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
		return(-1);

	unlink(name);	/* in case it already exists */

					/* fill in socket address structure */
	memset(&unix_addr, 0, sizeof(unix_addr));
	unix_addr.sun_family = AF_UNIX;
	strcpy(unix_addr.sun_path, name);
	len = /* th sizeof(unix_addr.sun_len) + */  sizeof(unix_addr.sun_family) +
		  strlen(unix_addr.sun_path) /* th + 1 */ ;
	/* th unix_addr.sun_len = len; */

					/* bind the name to the descriptor */
	if (bind(fd, (struct sockaddr *) &unix_addr, len) < 0)
		return(-1);

	if (listen(fd, 5) < 0)	/* tell kernel we're a server */
		return(-1);

	return(fd);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -