tinc/src/netutl.h

39 lines
1.5 KiB
C
Raw Normal View History

2019-08-26 11:44:36 +00:00
/*
netutl.h -- header file for netutl.c
2019-08-26 11:44:38 +00:00
Copyright (C) 1998-2005 Ivo Timmermans
2019-08-26 11:44:51 +00:00
2000-2013 Guus Sliepen <guus@tinc-vpn.org>
2019-08-26 11:44:36 +00:00
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
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2019-08-26 11:44:38 +00:00
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2019-08-26 11:44:36 +00:00
*/
2019-08-26 11:44:49 +00:00
#ifndef __TINC_NETUTL_H__
#define __TINC_NETUTL_H__
2019-08-26 11:44:36 +00:00
#include "net.h"
2019-08-26 11:44:36 +00:00
extern bool hostnames;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:51 +00:00
extern struct addrinfo *str2addrinfo(const char *, const char *, int) __attribute__ ((__malloc__));
2019-08-26 11:44:49 +00:00
extern sockaddr_t str2sockaddr(const char *, const char *);
extern void sockaddr2str(const sockaddr_t *, char **, char **);
2019-08-26 11:44:51 +00:00
extern char *sockaddr2hostname(const sockaddr_t *) __attribute__ ((__malloc__));
2019-08-26 11:44:49 +00:00
extern int sockaddrcmp(const sockaddr_t *, const sockaddr_t *);
extern int sockaddrcmp_noport(const sockaddr_t *, const sockaddr_t *);
extern void sockaddrunmap(sockaddr_t *);
extern void sockaddrfree(sockaddr_t *);
extern void sockaddrcpy(sockaddr_t *, const sockaddr_t *);
2019-08-26 11:44:49 +00:00
#endif /* __TINC_NETUTL_H__ */