1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-20 04:56:36 +02:00

Refactor DHT bootstrap code

- Separate node list loading from connecting
- Put code in its own source file
- Rename a few functions
This commit is contained in:
Jfreegman
2016-09-17 14:26:23 -04:00
parent 98154b3cba
commit 1f02bb2be5
4 changed files with 198 additions and 180 deletions

View File

@ -14,7 +14,7 @@ LDFLAGS = $(USER_LDFLAGS)
OBJ = chat.o chat_commands.o configdir.o execute.o file_transfers.o notify.o
OBJ += friendlist.o global_commands.o groupchat.o line_info.o input.o help.o autocomplete.o
OBJ += log.o misc_tools.o prompt.o settings.o toxic.o toxic_strings.o windows.o message_queue.o
OBJ += group_commands.o term_mplex.o avatars.o name_lookup.o qr_code.o
OBJ += group_commands.o term_mplex.o avatars.o name_lookup.o qr_code.o bootstrap.o
# Check on wich system we are running
UNAME_S = $(shell uname -s)