X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Ftincctl.h;h=9bacc46a2acb78d1eac4fb2c4dba2d5c6efc93da;hb=d93d4f9dbd09bc5e53a9b5eeb1cc94939fee32bc;hp=3f7d00373c510502558802beffff8277070dc5a1;hpb=953f5b4231bbbb8269bb0c55b96a1c8c4bb34a59;p=tinc diff --git a/src/tincctl.h b/src/tincctl.h index 3f7d0037..9bacc46a 100644 --- a/src/tincctl.h +++ b/src/tincctl.h @@ -3,7 +3,7 @@ /* tincctl.h -- header for tincctl.c. - Copyright (C) 2011-2016 Guus Sliepen + Copyright (C) 2011-2022 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,6 +20,9 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include "system.h" +#include "ecdsa.h" + extern bool tty; extern bool force; extern char line[4096]; @@ -43,13 +46,11 @@ typedef struct { extern const var_t variables[]; -extern int rstrip(char *value); -extern char *get_my_name(bool verbose); +extern size_t rstrip(char *value); +extern char *get_my_name(bool verbose) ATTR_MALLOC; extern bool connect_tincd(bool verbose); -extern bool sendline(int fd, char *format, ...); +extern bool sendline(int fd, const char *format, ...); extern bool recvline(int fd, char *line, size_t len); extern int check_port(const char *name); -extern FILE *fopenmask(const char *filename, const char *mode, mode_t perms); -extern ecdsa_t *get_pubkey(FILE *f); #endif