summaryrefslogtreecommitdiff
path: root/connecting.c
blob: fe9b99e242f5668f2c10d08540ba99d9ce673de7 (plain)
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
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <stdbool.h>
#include <fcntl.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include <netinet/in.h>

int main () {

	int sockfd;
    struct addrinfo *res;
    struct addrinfo hints;
	memset(&hints, 0, sizeof(hints));
	hints.ai_family = AF_INET;
	hints.ai_socktype = SOCK_STREAM;
	int result = getaddrinfo("192.168.1.18", "62000", &hints, &res);
	if (result != 0) {
		exit(0);
	}

	sockfd = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
	int connect_res = connect(sockfd, res->ai_addr, res->ai_addrlen);
	if (connect_res == -1) {
		fprintf(stderr, "connect_res: -1\n");
		exit(1);
	}
	
	
    return 0;  
}