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

📄 senderr.c

📁 该代码为unix环境高级编程的源代码
💻 C
字号:
#include	"ourhdr.h"/* Used when we had planned to send an fd using send_fd(), * but encountered an error instead.  We send the error back * using the send_fd()/recv_fd() protocol. */intsend_err(int clifd, int errcode, const char *msg){	int		n;	if ( (n = strlen(msg)) > 0)		if (writen(clifd, msg, n) != n)	/* send the error message */			return(-1);	if (errcode >= 0)		errcode = -1;	/* must be negative */	if (send_fd(clifd, errcode) < 0)		return(-1);	return(0);}

⌨️ 快捷键说明

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