rdservers.c
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:3k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /****************************************************************************    
  2.   Copyright (c) 1999 WU-FTPD Development Group.  
  3.   All rights reserved.
  4.    
  5.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994  
  6.     The Regents of the University of California. 
  7.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.  
  8.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.  
  9.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.  
  10.   Portions Copyright (c) 1998 Sendmail, Inc.  
  11.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.  
  12.   Portions Copyright (c) 1997 by Stan Barber.  
  13.   Portions Copyright (c) 1997 by Kent Landfield.  
  14.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997  
  15.     Free Software Foundation, Inc.    
  16.    
  17.   Use and distribution of this software and its source code are governed   
  18.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").  
  19.    
  20.   If you did not receive a copy of the license, it may be obtained online  
  21.   at http://www.wu-ftpd.org/license.html.  
  22.    
  23.   $Id: rdservers.c,v 1.3 1999/09/02 14:04:29 wuftpd Exp $  
  24.    
  25. ****************************************************************************/
  26. /*
  27.  * rdservers - read ftpservers file 
  28.  *
  29.  * INITIAL AUTHOR - Kent Landfield  <kent@landfield.com>
  30.  */
  31. #include "config.h"
  32. #ifdef  VIRTUAL
  33. #include <stdio.h>
  34. #include <string.h>
  35. #include <ctype.h>
  36. #include <sys/types.h>
  37. #include <sys/socket.h>
  38. #include <netinet/in.h>
  39. #include <arpa/inet.h>
  40. #include <netdb.h>
  41. /* Prototype */
  42. int read_servers_line(FILE *, char *, char *);
  43. int read_servers_line(FILE *svrfp, char *hostaddress, char *accesspath)
  44. {
  45.     static char buffer[BUFSIZ];
  46.     struct hostent *hp;
  47.     char *hcp, *acp;
  48.     char *bcp, *ecp;
  49.     while (fgets(buffer, BUFSIZ, svrfp) != NULL) {
  50. /* Find first non-whitespace character */
  51. for (bcp = buffer; ((*bcp == 't') || (*bcp == ' ')); bcp++);
  52. /* Get rid of comments */
  53. if ((ecp = strchr(buffer, '#')) != NULL)
  54.     *ecp = '';
  55. /* Skip empty lines */
  56. if ((bcp == ecp) || (*bcp == 'n'))
  57.     continue;
  58. /* separate parts */
  59. hcp = bcp;
  60. for (acp = hcp;
  61.      (*acp && !isspace(*acp)); acp++);
  62. /* better have something in access path or skip the line */
  63. if (!*acp)
  64.     continue;
  65. *acp++ = '';
  66. while (*acp && isspace(*acp))
  67.     acp++;
  68. /* again better have something in access path or skip the line */
  69. if (!*acp)
  70.     continue;
  71. ecp = acp;
  72. while (*ecp && (!isspace(*ecp)) && *ecp != 'n')
  73.     ++ecp;
  74. *ecp = '';
  75. if ((hp = gethostbyname(hcp)) != NULL) {
  76.     struct in_addr in;
  77.     memmove(&in, hp->h_addr, sizeof(in));
  78.     strcpy(hostaddress, inet_ntoa(in));
  79. }
  80. else
  81.     strcpy(hostaddress, hcp);
  82. strcpy(accesspath, acp);
  83. return (1);
  84.     }
  85.     return (0);
  86. }
  87. #endif