forked from strfry/peervpn
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix linker issue of dublicate definitions
- Loading branch information
Showing
3 changed files
with
47 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* MeshVPN - A open source peer-to-peer VPN (forked from PeerVPN) | ||
* | ||
* Copyright (C) 2012-2016 Tobias Volk <[email protected]> | ||
* Copyright (C) 2016 Hideman Developer <[email protected]> | ||
* Copyright (C) 2017 Benjamin Kübler <[email protected]> | ||
* | ||
* 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 | ||
* 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 <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
struct s_io_state iostate; | ||
struct s_p2psec * g_p2psec; | ||
int g_mainloop; | ||
|
||
struct s_switch_state g_switchstate; | ||
struct s_ndp6_state g_ndpstate; | ||
struct s_virtserv_state g_virtserv; | ||
|
||
int g_enableconsole; | ||
int g_enableeth; | ||
int g_enablendpcache; | ||
int g_enablevirtserv; | ||
int g_enableengines; |