2022-02-13 00:21:59 +00:00
|
|
|
#ifndef LAIKA_CNC_PANEL_H
|
|
|
|
#define LAIKA_CNC_PANEL_H
|
|
|
|
|
2022-03-03 16:28:43 +00:00
|
|
|
#include "cnc.h"
|
2022-02-13 00:21:59 +00:00
|
|
|
#include "lpeer.h"
|
|
|
|
|
2022-06-30 01:31:22 +00:00
|
|
|
void laikaC_sendPeerList(struct sLaika_cnc *cnc, struct sLaika_peer *authPeer);
|
2022-02-28 22:27:55 +00:00
|
|
|
void laikaC_sendNewPeer(struct sLaika_peer *authPeer, struct sLaika_peer *bot);
|
|
|
|
void laikaC_sendRmvPeer(struct sLaika_peer *authPeer, struct sLaika_peer *bot);
|
|
|
|
|
2022-06-27 23:57:00 +00:00
|
|
|
void laikaC_handleAuthenticatedShellOpen(struct sLaika_peer *authPeer, LAIKAPKT_SIZE sz,
|
|
|
|
void *uData);
|
|
|
|
void laikaC_handleAuthenticatedShellClose(struct sLaika_peer *authPeer, LAIKAPKT_SIZE sz,
|
|
|
|
void *uData);
|
|
|
|
void laikaC_handleAuthenticatedShellData(struct sLaika_peer *authPeer, LAIKAPKT_SIZE sz,
|
|
|
|
void *uData);
|
2022-02-13 00:21:59 +00:00
|
|
|
|
|
|
|
#endif
|