mirror of
https://git.k0rb4k.net/K0RB4K/qotd.git
synced 2026-09-26 13:21:01 +00:00
16 lines
198 B
C
16 lines
198 B
C
//
|
|
// Created by k0rb4k on 30/03/2021.
|
|
//
|
|
|
|
#ifndef QOTD_SERVER_H
|
|
#define QOTD_SERVER_H
|
|
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
|
|
void tcpListen();
|
|
|
|
void udpListen();
|
|
|
|
#endif //QOTD_SERVER_H
|