-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
510 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* $Id: socket.c 1.1 1995/01/01 07:11:14 cthuang Exp $ | ||
* | ||
* This module has been modified by Radim Kolar for OS/2 emx | ||
*/ | ||
|
||
/*********************************************************************** | ||
module: socket.c | ||
program: popclient | ||
SCCS ID: @(#)socket.c 1.5 4/1/94 | ||
programmer: Virginia Tech Computing Center | ||
compiler: DEC RISC C compiler (Ultrix 4.1) | ||
environment: DEC Ultrix 4.3 | ||
description: UNIX sockets code. | ||
***********************************************************************/ | ||
|
||
#include <sys/types.h> | ||
#include <sys/socket.h> | ||
#include <fcntl.h> | ||
#include <netinet/in.h> | ||
#include <arpa/inet.h> | ||
#include <netdb.h> | ||
#include <sys/time.h> | ||
#include <string.h> | ||
#include <unistd.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <stdarg.h> | ||
|
||
int Socket(const char *host, int clientPort) | ||
{ | ||
int sock; | ||
unsigned long inaddr; | ||
struct sockaddr_in ad; | ||
struct hostent *hp; | ||
|
||
memset(&ad, 0, sizeof(ad)); | ||
ad.sin_family = AF_INET; | ||
|
||
inaddr = inet_addr(host); | ||
if (inaddr != INADDR_NONE) | ||
memcpy(&ad.sin_addr, &inaddr, sizeof(inaddr)); | ||
else | ||
{ | ||
hp = gethostbyname(host); | ||
if (hp == NULL) | ||
return -1; | ||
memcpy(&ad.sin_addr, hp->h_addr, hp->h_length); | ||
} | ||
ad.sin_port = htons(clientPort); | ||
|
||
sock = socket(AF_INET, SOCK_STREAM, 0); | ||
if (sock < 0) | ||
return sock; | ||
if (connect(sock, (struct sockaddr *)&ad, sizeof(ad)) < 0) | ||
return -1; | ||
return sock; | ||
} | ||
|
Oops, something went wrong.