1
0
mirror of https://github.com/CPunch/Laika.git synced 2025-10-28 09:10:19 +00:00

Refactoring: reorganized files

This commit is contained in:
2022-09-01 20:00:37 -05:00
parent 169313ee39
commit b23057b219
52 changed files with 639 additions and 557 deletions

View File

@@ -1,11 +1,11 @@
#ifndef SHELLCLIENT_H
#define SHELLCLIENT_H
#include "hashmap.h"
#include "lmem.h"
#include "lpeer.h"
#include "lsodium.h"
#include "ltask.h"
#include "core/hashmap.h"
#include "core/lmem.h"
#include "core/lsodium.h"
#include "core/ltask.h"
#include "net/lpeer.h"
#include "speer.h"
typedef struct sShell_client

View File

@@ -1,8 +1,8 @@
#ifndef SHELLPEER_H
#define SHELLPEER_H
#include "lpeer.h"
#include "lsodium.h"
#include "core/lsodium.h"
#include "net/lpeer.h"
typedef struct sShell_peer
{

View File

@@ -1,4 +1,4 @@
#include "ini.h"
#include "core/ini.h"
#include "sclient.h"
#include "sterm.h"

View File

@@ -1,9 +1,9 @@
#include "sclient.h"
#include "lerror.h"
#include "lmem.h"
#include "lpacket.h"
#include "lsodium.h"
#include "core/lerror.h"
#include "core/lmem.h"
#include "core/lsodium.h"
#include "net/lpacket.h"
#include "sterm.h"
void shell_pingTask(struct sLaika_taskService *service, struct sLaika_task *task, clock_t currTick,

View File

@@ -1,7 +1,7 @@
#include "scmd.h"
#include "lerror.h"
#include "lmem.h"
#include "core/lerror.h"
#include "core/lmem.h"
#include "sclient.h"
#include "speer.h"
#include "sterm.h"

View File

@@ -1,7 +1,7 @@
#include "speer.h"
#include "lmem.h"
#include "lpacket.h"
#include "core/lmem.h"
#include "net/lpacket.h"
#include "sterm.h"
tShell_peer *shellP_newPeer(PEERTYPE type, OSTYPE osType, uint8_t *pubKey, char *hostname,

View File

@@ -1,6 +1,6 @@
#include "sterm.h"
#include "lmem.h"
#include "core/lmem.h"
#include "scmd.h"
#define KEY_ESCAPE 0x001b