authmksock.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /*
  2. ** Copyright 2000 Double Precision, Inc.  See COPYING for
  3. ** distribution information.
  4. */
  5. #include "config.h"
  6. #include <sys/types.h>
  7. #include <sys/stat.h>
  8. #include <sys/socket.h>
  9. #include <sys/un.h>
  10. #include <sys/time.h>
  11. #include <sys/wait.h>
  12. #include <unistd.h>
  13. #include <stdlib.h>
  14. #include <stdio.h>
  15. static const char rcsid[]="$Id: authmksock.c,v 1.1 2000/04/30 15:18:43 mrsam Exp $";
  16. #ifndef SOMAXCONN
  17. #define SOMAXCONN 5
  18. #endif
  19. int main(int argc, char *argv[])
  20. {
  21. int fd=socket(PF_UNIX, SOCK_STREAM, 0);
  22. struct sockaddr_un skun;
  23. if (argc < 2) exit(1);
  24. if (fd < 0) exit(1);
  25. skun.sun_family=AF_UNIX;
  26. strcpy(skun.sun_path, argv[1]);
  27. unlink(skun.sun_path);
  28. if (bind(fd, (const struct sockaddr *)&skun, sizeof(skun)) ||
  29. listen(fd, SOMAXCONN))
  30. exit(1);
  31. exit (0);
  32. return (0);
  33. }