mirror of https://github.com/ntop/n2n.git
Luca Deri
7 years ago
1 changed files with 49 additions and 0 deletions
@ -0,0 +1,49 @@ |
|||||
|
/**
|
||||
|
* (C) 2007-18 - ntop.org and contributors |
||||
|
* |
||||
|
* 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 see <http://www.gnu.org/licenses/>
|
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
#include "n2n.h" |
||||
|
|
||||
|
/*
|
||||
|
This tool demonstrates how to easily embed |
||||
|
n2n on an existing application |
||||
|
*/ |
||||
|
|
||||
|
int main(int argc, char* argv[]) { |
||||
|
char *device_name = (char*)"n2n0"; |
||||
|
char *network_name = (char*)"mynetwork"; |
||||
|
char *secret_key = (char*)"mysecret"; |
||||
|
char *my_mac_address = (char*)"DE:AD:BE:EF:01:10"; |
||||
|
char *my_ipv4_addr = (char*)"1.2.3.4"; |
||||
|
char *supernode = (char*)"7.8.9.10:1234"; |
||||
|
|
||||
|
/* Increase tracelevel to see what's happening */ |
||||
|
traceLevel = 10; |
||||
|
|
||||
|
/*
|
||||
|
NOTE |
||||
|
|
||||
|
As the function below won't end, you should |
||||
|
call it inside a separate thread |
||||
|
*/ |
||||
|
return(quick_edge_init(device_name, |
||||
|
network_name, |
||||
|
secret_key, |
||||
|
my_mac_address, |
||||
|
my_ipv4_addr, |
||||
|
supernode)); |
||||
|
} |
Loading…
Reference in new issue