recv-announce.c
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:3k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: recv-announce.c,v 1.20 1998/07/22 20:37:43 wessels Exp $
  3.  *
  4.  * DEBUG: section 0     Announcement Server
  5.  * AUTHOR: Harvest Derived
  6.  *
  7.  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
  8.  * ----------------------------------------------------------
  9.  *
  10.  *  Squid is the result of efforts by numerous individuals from the
  11.  *  Internet community.  Development is led by Duane Wessels of the
  12.  *  National Laboratory for Applied Network Research and funded by the
  13.  *  National Science Foundation.  Squid is Copyrighted (C) 1998 by
  14.  *  Duane Wessels and the University of California San Diego.  Please
  15.  *  see the COPYRIGHT file for full details.  Squid incorporates
  16.  *  software developed and/or copyrighted by other sources.  Please see
  17.  *  the CREDITS file for full details.
  18.  *
  19.  *  This program is free software; you can redistribute it and/or modify
  20.  *  it under the terms of the GNU General Public License as published by
  21.  *  the Free Software Foundation; either version 2 of the License, or
  22.  *  (at your option) any later version.
  23.  *  
  24.  *  This program is distributed in the hope that it will be useful,
  25.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  *  GNU General Public License for more details.
  28.  *  
  29.  *  You should have received a copy of the GNU General Public License
  30.  *  along with this program; if not, write to the Free Software
  31.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
  32.  *
  33.  */
  34. #include <stdio.h>
  35. #include <fcntl.h>
  36. #include <stdlib.h>
  37. #include <string.h>
  38. #include <sys/types.h>
  39. #include <sys/socket.h>
  40. #include <netinet/in.h>
  41. #include <arpa/inet.h>
  42. #include <netdb.h>
  43. #include <unistd.h>
  44. #include <signal.h>
  45. #define RECV_BUF_SIZE 8192
  46. extern void xmemcpy(void *from, void *to, int len);
  47. /*
  48.  * This program must be run from inetd.  First add something like this
  49.  * to /etc/services:
  50.  * 
  51.  * cached_announce 3131/udp             # cache announcements
  52.  * 
  53.  * And then add something like this to /etc/inetd/conf:
  54.  * 
  55.  * cached_announce dgram udp       wait cached /tmp/recv-announce recv-announce /tmp/recv-announce.log
  56.  * 
  57.  * 
  58.  * A single instance of this process will continue to handle incoming
  59.  * requests.  If it dies, or is killed, inetd should restart it when the
  60.  * next message arrives.
  61.  * 
  62.  */
  63. /* 
  64.  * usage: recv-announce logfile
  65.  */
  66. static void
  67. sig_handle(void)
  68. {
  69.     fflush(stdout);
  70.     close(2);
  71.     close(1);
  72.     close(0);
  73.     exit(0);
  74. }
  75. int
  76. main(int argc, char *argv[])
  77. {
  78.     char buf[RECV_BUF_SIZE];
  79.     struct sockaddr_in R;
  80.     int len;
  81.     struct hostent *hp = NULL;
  82.     char logfile[BUFSIZ];
  83.     char ip[4];
  84.     for (len = 0; len < 32; len++) {
  85. signal(len, sig_handle);
  86.     }
  87.     if (argc > 1)
  88. strcpy(logfile, argv[1]);
  89.     else
  90. strcpy(logfile, "/tmp/recv-announce.log");
  91.     close(1);
  92.     if (open(logfile, O_WRONLY | O_CREAT | O_APPEND, 0660) < 0) {
  93. perror(logfile);
  94. exit(1);
  95.     }
  96.     close(2);
  97.     dup(1);
  98.     for (;;) {
  99. memset(buf, '', RECV_BUF_SIZE);
  100. memset(&R, '', len = sizeof(R));
  101. if (recvfrom(0, buf, RECV_BUF_SIZE, 0, &R, &len) < 0) {
  102.     perror("recv");
  103.     exit(2);
  104. }
  105. xmemcpy(ip, &R.sin_addr.s_addr, 4);
  106. hp = gethostbyaddr(ip, 4, AF_INET);
  107. printf("==============================================================================n");
  108. printf("Received from %s [%s]n",
  109.     inet_ntoa(R.sin_addr),
  110.     (hp && hp->h_name) ? hp->h_name : "Unknown");
  111. fputs(buf, stdout);
  112. fflush(stdout);
  113.     }
  114.     return 0;
  115. }