mirror of
https://github.com/markqvist/tncattach.git
synced 2024-10-31 15:37:12 -04:00
Renamed TCP files
This commit is contained in:
parent
5c8ddcd992
commit
26f1e48b19
37
TCP.c
Normal file
37
TCP.c
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
#include "TCP.h"
|
||||||
|
|
||||||
|
int open_tcp(char* ip, int port) {
|
||||||
|
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
|
||||||
|
|
||||||
|
if (sockfd < 0) {
|
||||||
|
perror("Could not open AF_INET socket");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct hostent *server;
|
||||||
|
struct sockaddr_in serv_addr;
|
||||||
|
|
||||||
|
server = gethostbyname(ip);
|
||||||
|
|
||||||
|
if (server == NULL) {
|
||||||
|
perror("Error resolving host");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
bzero((char *) &serv_addr, sizeof(serv_addr));
|
||||||
|
serv_addr.sin_family = AF_INET;
|
||||||
|
|
||||||
|
bcopy((char *)server->h_addr, (char *)&serv_addr.sin_addr.s_addr, server->h_length);
|
||||||
|
serv_addr.sin_port = htons(port);
|
||||||
|
|
||||||
|
if (connect(sockfd, (struct sockaddr*)&serv_addr, sizeof(serv_addr)) < 0) {
|
||||||
|
perror("Could not connect TCP socket");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
return sockfd;
|
||||||
|
}
|
||||||
|
|
||||||
|
int close_tcp(int fd) {
|
||||||
|
return close(fd);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user