n2n/include/edge_utils_win32.h

53 lines
1.5 KiB
C
Raw Normal View History

2020-06-17 06:54:02 +02:00
/**
2021-02-08 11:26:06 +01:00
* (C) 2007-21 - ntop.org and contributors
2020-06-17 06:54:02 +02: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 3 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
2020-06-17 06:54:02 +02:00
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not see see <http://www.gnu.org/licenses/>
*
*/
#ifndef _EDGE_UTILS_WIN32_H_
#define _EDGE_UTILS_WIN32_H_
2020-06-21 22:26:27 +02:00
#ifdef WIN32
#define WIN32_LEAN_AND_MEAN
2020-06-21 22:26:27 +02:00
#include <process.h>
#include <n2n.h>
#include <winsock2.h>
#include <iphlpapi.h>
2020-06-21 22:26:27 +02:00
2020-06-21 22:26:27 +02:00
/* Multicast peers discovery disabled due to https://github.com/ntop/n2n/issues/65 */
/* Currently, multicast is performed by specifying the default routing network adapter.
* If the solution is determined to be stable and effective,
* all macro definitions "SKIP_MULTICAST_PEERS_DISCOVERY" will be completely deleted in the future.
*/
//#define SKIP_MULTICAST_PEERS_DISCOVERY
2020-06-21 22:26:27 +02:00
struct tunread_arg {
n2n_edge_t *eee;
int *keep_running;
2020-06-21 22:26:27 +02:00
};
2020-12-19 12:28:06 +01:00
extern HANDLE startTunReadThread (struct tunread_arg *arg);
int get_best_interface_ip(n2n_edge_t * eee, dec_ip_str_t ip_addr);
2020-06-21 22:26:27 +02:00
#endif /* WIN32 */
2020-06-16 09:42:38 +02:00
#endif /* _EDGE_UTILS_WIN32_H_ */