Checking in last of the modified Godot code.
This commit is contained in:
parent
6a6169aef5
commit
0a8277871a
4 changed files with 5 additions and 4 deletions
3
edit.sh
3
edit.sh
|
@ -1,3 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
sudo godot/bin/godot.linuxbsd.editor.x86_64 --editor --path hamncheese | tee output.log
|
#sudo godot/bin/godot.linuxbsd.editor.x86_64 --editor --path hamncheese | tee output.log
|
||||||
|
godot/bin/godot.linuxbsd.editor.x86_64 --editor --path test | tee output.log
|
||||||
|
|
||||||
|
|
|
@ -170,7 +170,7 @@ static void mgmt_edges_row (mgmt_req_t *req, strbuf_t *buf, struct peer_info *pe
|
||||||
static void mgmt_edges (mgmt_req_t *req, strbuf_t *buf) {
|
static void mgmt_edges (mgmt_req_t *req, strbuf_t *buf) {
|
||||||
struct peer_info *peer, *tmpPeer;
|
struct peer_info *peer, *tmpPeer;
|
||||||
|
|
||||||
// dump nodes with forwarding through supernodes
|
// dump nodes with forwarding through supernodes
|
||||||
HASH_ITER(hh, req->eee->pending_peers, peer, tmpPeer) {
|
HASH_ITER(hh, req->eee->pending_peers, peer, tmpPeer) {
|
||||||
mgmt_edges_row(req, buf, peer, "pSp");
|
mgmt_edges_row(req, buf, peer, "pSp");
|
||||||
}
|
}
|
||||||
|
|
|
@ -143,7 +143,7 @@ void N2NVPN::reset_configuration() {
|
||||||
_conf.register_interval = 1; // Interval for both UDP NAT hole punching and supernode registration
|
_conf.register_interval = 1; // Interval for both UDP NAT hole punching and supernode registration
|
||||||
_conf.register_ttl = 1; // Interval for UDP NAT hole punching through supernode
|
_conf.register_ttl = 1; // Interval for UDP NAT hole punching through supernode
|
||||||
_conf.tos = 16; // Type of service for sent packets
|
_conf.tos = 16; // Type of service for sent packets
|
||||||
_conf.transop_id = N2N_TRANSFORM_ID_TWOFISH; // Use the twofish encryption
|
_conf.transop_id = N2N_TRANSFORM_ID_AES; // Use AES encryption
|
||||||
|
|
||||||
// _conf.network_traffic_filter_rules
|
// _conf.network_traffic_filter_rules
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,6 @@ make
|
||||||
mv supernode ../../../bin/.
|
mv supernode ../../../bin/.
|
||||||
mv edge ../../../bin/.
|
mv edge ../../../bin/.
|
||||||
#make clean
|
#make clean
|
||||||
#rm include/config.h
|
rm include/config.h
|
||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
Loading…
Add table
Reference in a new issue