aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
Commit message (Collapse)AuthorAge
* fixed a memleak, a static string free, an access of freed memory etcCarlo von lynX2016-07-29
|
* - open port after handle checkBart Polot2016-07-20
|
* - adapt test cases / framework to new port systemBart Polot2016-07-20
|
* Change CADET ports from uint32 to HashCodeBart Polot2016-07-20
|
* - reduce INFO level debugBart Polot2016-07-20
|
* -avoid calling memcpy() with NULL argument, even if len is 0Christian Grothoff2016-07-08
|
* -init cfgChristian Grothoff2016-07-08
|
* migrate transport_core API to MQChristian Grothoff2016-07-08
|
* avoid NPEChristian Grothoff2016-06-27
|
* convert DHT API to new MQ APIChristian Grothoff2016-06-23
|
* fix compiler warningsChristian Grothoff2016-05-06
|
* fixing compiler warningsChristian Grothoff2016-05-06
|
* Fix shutdown assertion failure in core_api: avoid double cancel of pending ↵Bart Polot2016-05-03
| | | | traffic
* implementing new scheduler shutdown semanticsChristian Grothoff2016-04-30
|
* small API change: do no longer pass rarely needed ↵Christian Grothoff2016-04-09
| | | | GNUNET_SCHEDULER_TaskContext to all scheduler tasks; instead, allow the relatively few tasks that need it to obtain the context via GNUNET_SCHEDULER_get_task_context()
* - free queued messages on peer destroy, fix #4001Bart Polot2016-03-30
|
* - fix condition on connection timeoutBart Polot2016-03-30
|
* - check return value on send_broken_unknownBart Polot2016-03-30
|
* - refactor, test orderdBart Polot2016-03-30
|
* - use proper setter methodBart Polot2016-03-30
|
* - doxygenBart Polot2016-03-30
|
* - refactor connection destroy handling, fix #4020Bart Polot2016-03-30
|
* - doxygenBart Polot2016-03-30
|
* - indent, clarify messagesBart Polot2016-03-30
|
* - typo, comparison orderBart Polot2016-03-30
|
* -fix (C) noticesChristian Grothoff2016-01-19
|
* - warn when trying to send traffic to disconnected neighborBart Polot2015-12-09
|
* Another attampt at fixing #4010: mark unavailable neighbors in FlowControl ↵Bart Polot2015-12-09
| | | | struct, test on POLL
* Fix #4020, wrong assertion: if destroy is different from NO, state MUST be ↵Bart Polot2015-12-09
| | | | DESTROYED
* - add some assertions to make sure the poll mechanism is saneBart Polot2015-10-20
|
* When cancelling polls cancel pending messages as well, as the message willBart Polot2015-10-20
| | | | trigger a new poll upon sending. Fix #4010.
* -do not suggest twiceChristian Grothoff2015-10-18
|
* -stop active offer before starting another oneChristian Grothoff2015-10-18
|
* use ATS connectivity suggestion instead of deprecated ↵Christian Grothoff2015-10-18
| | | | GNUNET_TRANSPORT_try_connect
* -track hello offer handle while it is activeChristian Grothoff2015-10-18
|
* -fix doxygen warningsChristian Grothoff2015-10-16
|
* Always force queue local messages when the client was pre-authorized to ↵Bart Polot2015-10-13
| | | | send. Fix #3999.
* - only request reply if no key is knownBart Polot2015-10-08
|
* -fix indentChristian Grothoff2015-10-08
|
* - fix script to work with barebone versions of shBart Polot2015-10-06
|
* - ignore confirmation of connections that are being destroyed (tunnel ↵Bart Polot2015-10-06
| | | | shutting down, for instance)
* - remove unused variableBart Polot2015-10-06
|
* - refactor test dropping, reduce test loadBart Polot2015-10-06
|
* - Revamp traffic logging, small bugfixes, complete doxygenBart Polot2015-10-06
|
* - don't show WARNINGs on duplicate trafficBart Polot2015-10-02
|
* - only break for cadet errorsBart Polot2015-10-02
|
* - remove debugBart Polot2015-10-02
|
* - adjust loggingBart Polot2015-10-02
|
* - find the correct stored key, not always the first oneBart Polot2015-10-02
|
* Don't reset axolotl state on receipt of a pseudo-duplicate AX key exchange.Bart Polot2015-10-02
| | | | | | | | | | Pseudo duplicate means same handshake key but different ratchet key. This can happen if Alice's first KX message is lost, she receives Bob's KX and send a payload message herself, advancing her ratchet. If Bob doesn't send a payload message fast enough, or it gets lost, Alice will retransmit her KX message, this time with a different ratchet key. If Bob only checks the ratchet key (the handshake keys are discarded) it could reset the Axolotl status and re-use keys for messages that got lost/delayed.