#ifndef CONNECT_H
#define CONNECT_H 1

#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <errno.h>


int establish_connect(int ret_val);

#endif
