working udp

This commit is contained in:
Arthur-Coppey
2021-10-15 14:08:44 +02:00
parent 61221bffff
commit 7ad0e7ad56
7 changed files with 181 additions and 54 deletions
+19
View File
@@ -0,0 +1,19 @@
//
// Created by k0rb4k on 11/10/2021.
//
#ifndef QOTD_CLIENT_H
#define QOTD_CLIENT_H
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
int tcp();
int udp();
#endif //QOTD_CLIENT_H