changes to timers, removed unused code

This commit is contained in:
Joseph Henry
2016-11-17 16:55:11 -08:00
parent ea1b62a7dc
commit 91048450e2
11 changed files with 179 additions and 63 deletions

View File

@@ -5,6 +5,7 @@
#include <netinet/in.h>
#include <netdb.h>
#include <stdlib.h>
#include <string.h>
#define MAXBUF 65536
@@ -13,7 +14,7 @@ int main()
int sock;
int status;
struct sockaddr_in6 sin6;
int sin6len;
socklen_t sin6len;
char buffer[MAXBUF];
sock = socket(PF_INET6, SOCK_DGRAM,0);