mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-06 16:15:23 -04:00
BUGFIX: Big BUG in External Port notification! FIXED.
An invalid comparison was being made - meaning the EXT_PORT_FLAG was not set. This can lead to failed connection attempts. Added dht_check_peers program. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@409 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
d335e37c8d
commit
0c0147abe6
3 changed files with 18 additions and 15 deletions
|
@ -10,10 +10,10 @@ include $(RS_TOP_DIR)/scripts/config.mk
|
|||
RSOBJ = b64.o opendhtstr.o opendht.o opendhtmgr.o
|
||||
|
||||
TESTOBJ = odhtstr_test.o odhtpost_test.o odhtmgr_test.o \
|
||||
dht_bootstrap.o
|
||||
dht_bootstrap.o dht_check_peers.o
|
||||
|
||||
TESTS = odhtstr_test odhtpost_test odhtmgr_test \
|
||||
dht_bootstrap
|
||||
dht_bootstrap dht_check_peers
|
||||
|
||||
all: librs tests
|
||||
|
||||
|
@ -21,6 +21,9 @@ all: librs tests
|
|||
dhttest: $(OBJ) dhttest.o
|
||||
$(CC) $(CFLAGS) -o dhttest $(OBJ) dhttest.o $(LIBS)
|
||||
|
||||
dht_check_peers: $(OBJ) dht_check_peers.o
|
||||
$(CC) $(CFLAGS) -o dht_check_peers $(OBJ) dht_check_peers.o $(LIBS)
|
||||
|
||||
odhtpost_test: $(OBJ) odhtpost_test.o
|
||||
$(CC) $(CFLAGS) -o odhtpost_test $(OBJ) odhtpost_test.o $(LIBS)
|
||||
|
||||
|
|
|
@ -402,8 +402,8 @@ int main(int argc, char **argv)
|
|||
}
|
||||
|
||||
/* switch off Stun/Bootstrap stuff */
|
||||
dht.doneStun();
|
||||
dht.setBootstrapAllowed(false);
|
||||
dhtTester.doneStun();
|
||||
dhtTester.setBootstrapAllowed(false);
|
||||
|
||||
|
||||
/* wait loop */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue