summaryrefslogtreecommitdiff
path: root/other
AgeCommit message (Collapse)Author
2014-05-20Install tox_bootstrap_daemonstal
I call on the venerable @jin_eld once again to verify that this change is correct.
2014-05-18Made config file more consistent with default valuesMaxim Biro
2014-05-18Added default ports to the .c file, included 33445 portMaxim Biro
2014-05-18Fixed a bugMaxim Biro
2014-05-18Allow multiple instances of the daemonMaxim Biro
2014-05-18Fixed out of bounds write.irungentoo
2014-05-18Added MOTD functionalityMaxim Biro
2014-05-17Some small fixesMaxim Biro
2014-05-17Extracted min and max allowed port values into named constantsMaxim Biro
2014-05-17Added TCP server functionalityMaxim Biro
2014-05-08Merge branch 'master' into TCPirungentoo
2014-04-23Fixed the DHT bootstrap daemon.irungentoo
2014-04-23Updated some files so that they could build with latest core.irungentoo
Fixed some issues.
2014-04-16multiple spelling fixesCarlos E. Garcia
2014-04-16DHT_bootstrap.c now has TCP server functionality enabled.irungentoo
Fixed a regression (same type as last commit).
2014-04-13TCP_client pretty much done?irungentoo
Now next step is integrating it in tox. Added TCP server functionality to bootstrap server (define TCP_RELAY_ENABLED to enable it.)
2014-03-23Fix NaCl builds for *BSDJin^eLD
From what I see there is a difference between *BSD and Linux when linking vs. toxcore which has been bulit vs. the NaCl library: on Linux it only links if NaCl's object files (i.e. randombytes.o) is present in the linker options, however on *BSD systems this will cause a linking error, see: https://github.com/Tox/toxic/issues/31#issuecomment-38224441 This commit makes sure that we do not add the NaCl object files to our pkg-config settings on *BSD, but do add them on Linux.
2014-02-22Renamed dht server to dht nodeMaxim Biro
2014-02-10Added entry to TODO and a public key cracker (vanity key finder) to other/fun.irungentoo
2014-02-09Astyled and removed some useless files.irungentoo
2014-02-09Fixed memory leaks and removed repeated codeMaxim Biro
2014-02-01Added DHT bootstrap server info packets.irungentoo
define DHT_SERVER_EXTRA_PACKETS to enable.
2014-01-30Fixed PID forgetfulness.tawm
2014-01-25Shortened daemon's nameMaxim Biro
2014-01-25Made bootstrapping optionalMaxim Biro
2014-01-25Added more error checkingMaxim Biro
2014-01-21Update DHTserversSean
2014-01-21Updated DHT server list.irungentoo
2014-01-20Added updated bootstrap server.irungentoo
2014-01-20Updated DHT server list with onion supporting DHT servers.irungentoo
Onionised DHT_test.
2014-01-20Moved things aroundMaxim Biro
2014-01-20Fixed missing cleanupMaxim Biro
2014-01-20Enabled onion in bootstrap_serverdaemon.irungentoo
2014-01-20Merge branch 'onion'irungentoo
2014-01-19proper windows preprocessor detectionBen Iofel
2014-01-19Added .sh to the scriptMaxim Biro
2014-01-19Fixed function conflictMaxim Biro
2014-01-19Fixed spellingMaxim Biro
2014-01-19Spellchecked everythingMaxim Biro
2014-01-19Astyled the codeMaxim Biro
2014-01-19Fixed buildMaxim Biro
2014-01-19Fixed comments and variables' namesMaxim Biro
2014-01-19Renamed to fix build processMaxim Biro
2014-01-19Fixed some formattingMaxim Biro
2014-01-19Tell github that README is a markdown fileMaxim Biro
2014-01-19Improved DHT bootstrap daemonMaxim Biro
Supports "unlimited" number of bootstrap nodes in the config file, instead of just 32. PID and keys file paths are not limited by 512 chars anymore. Doesn't read the whole list of bootstrap servers into a global datastructure that just sits there after being processed once -- reads bootstrap servers one by one, processing them between reads. Supports IPv6. Has an option for IPv6. Supports LAN discovery. Has an option for LAN discovery. Writes to syslog. Uses new functions introduced in the core. `status` in the bash script now works. Has a simple README, with instructions for Debian-based distros.
2014-01-17Onion servers are now DHT ready.irungentoo
2013-12-20Always build DHT_bootstrapJin^eLD
DHT_bootstrap is not the same as DHT_bootstrap_serverdaemon, the latter depends on libconfig and can be enabled/disable via a configure parameter. DHT_bootstrap has no dependencies and can always be built.
2013-10-24Move unix_time(), id_cpy()/id_eq(), is_timeout() to util.*Coren[m]
unix_time(): - returns local value for current epoch - value is updated explicitly with unix_time_update() called at new_DHT()/doMessenger()/do_DHT() is_timeout(): - uses the local value for current epoch id_cpy()/id_eq() => id_copy()/id_equal(): - centralized duplicate definitions - replaced (most) memcpy()/memcmp() of (*, *, CLIENT_ID_SIZE) with id_copy()/id_equal()
2013-10-20Main: Eliminate TOX_ENABLE_IPV6 (then always on), CLIENT_ONETOONE_IP (then ↵Coren[m]
always off). Additionally (besides cleanups): network.h/tox.h: - WIN32: fix a strange sa_family_t definition - WIN32: define EWOULDBLOCK to WSAEWOULDBLOCK - WIN32: kill macro for an existing function (IN6_ADDR_EQUAL) network.c: - use EWOULDBLOCK instead of EAGAIN (same value, but EWOULDBLOCK is more "popular") - new_networking(): only try to enable IPv4-in-IPv6 if it's not already enabled per default - inet_ntop()/inet_pton(): WIN32: remove partial initializers in favor of a simple memset() - ip_equal(): WIN32: use an existing function - logging: networking_wait_execute(): only dump result if not timeout - logging: loglogdata(): kill an unused variable LAN_discovery.c: - send_broadcasts(): re-enabled, can only support IPv4 by principle, split into fetch_broadcast_info() (to fetch the addresses once) and send_broadcasts() (actual sending) DHT.c: - DHT_load_state_callback(): enclosed a fprintf(stderr, ...) into #ifdef DEBUG Lossless_UDP.c: - change_handshake(): harden against strange sa_family_t definitions Messenger.c: - logging: fix ID to string conversion util.c: - logging: eliminate a signed-warning