Checking in last of the modified Godot code.

This commit is contained in:
Scott Duensing 2023-09-14 16:25:45 -05:00
parent 6a6169aef5
commit 0a8277871a
4 changed files with 5 additions and 4 deletions

View file

@ -1,3 +1,4 @@
#!/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

View file

@ -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) {
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) {
mgmt_edges_row(req, buf, peer, "pSp");
}

View file

@ -143,7 +143,7 @@ void N2NVPN::reset_configuration() {
_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.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

View file

@ -14,6 +14,6 @@ make
mv supernode ../../../bin/.
mv edge ../../../bin/.
#make clean
#rm include/config.h
rm include/config.h
popd