Skip to content

Instantly share code, notes, and snippets.

View beefy's full-sized avatar
✌️

Nate Schultz beefy

✌️
  • Zendesk
  • Philadelphia, PA
  • 09:30 (UTC -04:00)
View GitHub Profile
@beefy
beefy / client.c
Last active July 26, 2017 13:05 — forked from evanradcliffe/client.c
simple network in C from CS283
#include "csapp.h"
/* usage: ./echoclient host port */
int main(int argc, char **argv)
{
int clientfd, port;
char *host, buf[MAXLINE];
rio_t rio;
host = argv[1];
port = atoi(argv[2]);