Last active
June 10, 2016 20:45
-
-
Save mescarra/651ff33c59ef0d2856d3da4ebbccc7cd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <netdb.h> | |
void error(const char *msg) | |
{ | |
perror(msg); | |
exit(0); | |
} | |
int main(int argc, char *argv[]) | |
{ | |
int sockfd, portno, n; | |
struct sockaddr_in serv_addr; | |
struct hostent *server; | |
char buffer[256]; | |
if (argc < 4) { | |
fprintf(stderr,"usage %s hostname port command\n", argv[0]); | |
exit(0); | |
} | |
portno = atoi(argv[2]); | |
sockfd = socket(AF_INET, SOCK_STREAM, 0); | |
if (sockfd < 0) | |
error("ERROR opening socket"); | |
server = gethostbyname(argv[1]); | |
if (server == NULL) { | |
fprintf(stderr,"ERROR, no such host\n"); | |
exit(0); | |
} | |
memset((char *) &serv_addr, 0, sizeof(serv_addr)); | |
serv_addr.sin_family = AF_INET; | |
memcpy((char *)&serv_addr.sin_addr.s_addr, | |
(char *)server->h_addr, | |
server->h_length); | |
serv_addr.sin_port = htons(portno); | |
if (connect(sockfd,(struct sockaddr *) &serv_addr,sizeof(serv_addr)) < 0) | |
error("ERROR connecting"); | |
n = write(sockfd,argv[3],strlen(argv[3])); | |
if (n < 0) | |
error("ERROR writing to socket"); | |
memset(buffer, 0, 256); | |
n = read(sockfd,buffer,255); | |
if (n < 0) | |
error("ERROR reading from socket"); | |
printf("%s\n",buffer); | |
close(sockfd); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment