inetd
sitelist
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
调试inetd,用来了解inetd的源代码
root@ch-Founder-PC:~/inetutils-1.9.4/src# ./inetd -d Using pid-file at "/var/run/inetd.pid". /etc/inetd.conf:32: ADD : *:tftp proto=udp, wait=1, max=0, user=nobody group= builtin=no server=/usr/s原创 2017-12-11 15:48:11 · 987 阅读 · 1 评论 -
inetd.c源代码分析之处理inetd.conf文件的结果
下面是inetd.conf的文件内容 tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/tftpd -l /home/ch/tftpboot 调用的程序原创 2017-12-12 10:18:51 · 725 阅读 · 0 评论 -
inetd源代码分析之调试信息对应的源代码
int main (int argc, char *argv[], char *envp[]) { if (pidfile_option) { FILE *fp = fopen (pid_file, "w"); if (fp != NULL) { if (debug) fprintf(stderr, "Using p原创 2017-12-12 11:01:30 · 685 阅读 · 0 评论 -
inetutils中tftpd不能独立运行的原因
int main (int argc, char *argv[]) { int index; register struct tftphdr *tp; int on, n; struct sockaddr_storage sin; char *temp; int tempint; struct stat stbuf; user = xstr原创 2017-12-13 09:53:00 · 1098 阅读 · 0 评论
分享