Updated Peer type

This commit is contained in:
Tristan B. Velloza Kildaire 2022-01-01 17:19:24 +02:00
parent 94fe5fba4b
commit ab15f50c08
1 changed files with 5 additions and 1 deletions

View File

@ -30,7 +30,11 @@ typedef struct HookSet HookSet;
*/
struct Peer
{
//
uint8_t* publicKey;
uint8_t* endpoint;
/* Endpoint fd */
int fd;
};
typedef struct Peer Peer;