mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-14 09:50:05 +00:00
10 lines
334 B
C
10 lines
334 B
C
|
#ifndef LAIKA_CNC_PANEL_H
|
||
|
#define LAIKA_CNC_PANEL_H
|
||
|
|
||
|
#include "lpeer.h"
|
||
|
|
||
|
void laikaC_sendNewPeer(struct sLaika_peer *panel, struct sLaika_peer *bot);
|
||
|
void laikaC_sendRmvPeer(struct sLaika_peer *panel, struct sLaika_peer *bot);
|
||
|
void laikaC_handleAuthenticatedHandshake(struct sLaika_peer *panel, LAIKAPKT_SIZE sz, void *uData);
|
||
|
|
||
|
#endif
|