mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-10 00:00:05 +00:00
19 lines
495 B
C
19 lines
495 B
C
#ifndef SHELLPEER_H
|
|
#define SHELLPEER_H
|
|
|
|
#include "lsodium.h"
|
|
#include "lpeer.h"
|
|
|
|
typedef struct sShell_peer {
|
|
uint8_t pub[crypto_kx_PUBLICKEYBYTES];
|
|
char hostname[LAIKA_HOSTNAME_LEN], inet[LAIKA_INET_LEN], ipv4[LAIKA_IPV4_LEN];
|
|
PEERTYPE type;
|
|
OSTYPE osType;
|
|
} tShell_peer;
|
|
|
|
tShell_peer *shellP_newPeer(PEERTYPE type, OSTYPE osType, uint8_t *pub, char *hostname, char *inet, char *ipv4);
|
|
void shellP_freePeer(tShell_peer *peer);
|
|
|
|
void shellP_printInfo(tShell_peer *peer);
|
|
|
|
#endif |