1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*
sockets -- auxiliary socket functions
Copyright (C) 1996, 1997 Dieter Baron
This file is part of cftp, a fullscreen ftp client
The author can be contacted at <dillo@giga.or.at>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <netdb.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <errno.h>
#include "display.h"
extern char *prg;
#ifndef H_ERRNO_DECLARED
extern int h_errno;
#endif
int
sopen(char *host, char *service)
{
int s;
struct hostent *hp;
struct sockaddr_in sa;
u_short port;
struct servent *serv;
if ((serv = getservbyname(service, "tcp")) == NULL) {
if ((port=atoi(service)) == 0 && service[0] != '0') {
if (disp_active)
disp_status("unknown service: %s", service);
else
fprintf(stderr, "%s: unknown service: %s\n",
prg, service);
return(-1);
}
else
port = htons(port);
}
else
port = (u_short)serv->s_port;
if ((hp = gethostbyname(host)) == NULL) {
if (disp_active)
disp_status("can't get host %s: %s",
host, hstrerror(h_errno));
else
fprintf(stderr, "%s: can't get host %s: %s\n",
prg, host, hstrerror(h_errno));
return(-1);
}
memcpy(&sa.sin_addr, hp->h_addr, hp->h_length);
sa.sin_family = hp->h_addrtype;
sa.sin_port = port;
if ((s = socket(hp->h_addrtype, SOCK_STREAM, 0)) < 0) {
if (disp_active)
disp_status("can't allocate socket: %s\n",
strerror(errno));
else
fprintf(stderr, "%s: can't allocate socket: %s\n",
prg, strerror(errno));
return(-1);
}
if (connect(s, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
if (disp_active)
disp_status("can't connect: %s", strerror(errno));
else
fprintf(stderr, "%s: can't connect: %s\n",
prg, strerror(errno));
return(-1);
}
return(s);
}
int
spassive(unsigned long *host, int *port)
{
int s, len;
struct sockaddr_in locaddr;
extern int getport();
if ((s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) == -1) {
fprintf(stderr, "%s: can't allocate socket: %s\n",
prg, strerror(errno));
return(-1);
}
locaddr.sin_family = AF_INET;
locaddr.sin_addr.s_addr = INADDR_ANY;
memset(locaddr.sin_zero, 0, 8);
locaddr.sin_port = 0;
if (bind(s, (struct sockaddr *)&locaddr, sizeof(struct sockaddr_in))
== -1) {
fprintf(stderr, "%s: can't bind socket: %s\n",
prg, strerror(errno));
return(-1);
}
len = sizeof(locaddr);
if (getsockname(s, (struct sockaddr *)&locaddr, &len) == -1) {
fprintf(stderr, "%s: can't get socket name: %s\n",
prg, strerror(errno));
return(-1);
}
*host = (unsigned long)locaddr.sin_addr.s_addr;
*port = ntohs(locaddr.sin_port);
if (listen(s, 1) == -1) {
fprintf(stderr, "%s: can't listen on socket: %s\n",
prg, strerror(errno));
return(-1);
}
return s;
}
|