diff options
author | peter <peter@FreeBSD.org> | 1995-12-30 19:02:48 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-12-30 19:02:48 +0000 |
commit | ab124e78b0271ddb904b761b31e5c9a0cf24e070 (patch) | |
tree | 0cf1447720c45721ed3d214a4eaaa6834bda155d /lib/libftp/FtpGetHost.c | |
parent | 15748830d0fcd29294a1969a1012655e74908c1e (diff) | |
download | FreeBSD-src-ab124e78b0271ddb904b761b31e5c9a0cf24e070.zip FreeBSD-src-ab124e78b0271ddb904b761b31e5c9a0cf24e070.tar.gz |
recording cvs-1.6 file death
Diffstat (limited to 'lib/libftp/FtpGetHost.c')
-rw-r--r-- | lib/libftp/FtpGetHost.c | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/libftp/FtpGetHost.c b/lib/libftp/FtpGetHost.c deleted file mode 100644 index 7171ba3..0000000 --- a/lib/libftp/FtpGetHost.c +++ /dev/null @@ -1,44 +0,0 @@ -/* - Library for ftpd clients.(libftp) - Copyright by Oleg Orel - All rights reserved. - -This library is desined for free, non-commercial software creation. -It is changeable and can be improved. The author would greatly appreciate -any advises, new components and patches of the existing programs. -Commercial usage is also possible with participation of it's author. - - - -*/ - -#include "FtpLibrary.h" -#include <arpa/inet.h> - - -struct hostent *FtpGetHost(char *host) -{ - - static struct in_addr addr; - static struct hostent _host; - static char *point[2]; - static char *alias[1]; - - bzero(&_host,sizeof _host); - if ( (addr.s_addr=inet_addr(host)) != -1 ) - { - _host.h_addr_list = point; - _host.h_addr_list[0] = (char *) &addr; - _host.h_addr_list[1] = (char *) 0; - alias[0]=NULL; - _host.h_aliases=alias; - _host.h_name=host; - _host.h_length=sizeof(unsigned long); - _host.h_addrtype=AF_INET; - return &_host; - } - - return gethostbyname(host); -} - - |