Move ssutils to common
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
This commit is contained in:
10
src/common.h
10
src/common.h
@@ -1,5 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#if defined __linux__ && !defined _GNU_SOURCE
|
||||
#define _GNU_SOURCE
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
@@ -7,6 +11,8 @@
|
||||
#include <signal.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#ifndef PACKAGE_NAME
|
||||
#define PACKAGE_NAME "glorytun"
|
||||
#endif
|
||||
@@ -53,3 +59,7 @@ void gt_log (const char *, ...) _printf_(1,2);
|
||||
|
||||
int gt_tohex (char *, size_t, const uint8_t *, size_t);
|
||||
int gt_fromhex (uint8_t *, size_t, const char *, size_t);
|
||||
|
||||
void gt_set_port (struct sockaddr *, uint16_t);
|
||||
uint16_t gt_get_port (struct sockaddr *);
|
||||
int gt_toaddr (char *, size_t, struct sockaddr *);
|
||||
|
||||
Reference in New Issue
Block a user