aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport.c
Commit message (Collapse)AuthorAge
...
* fixing #3657 (replace ATS_Information with struct), but WIHTOUT fixing ATS ↵Christian Grothoff2015-02-10
| | | | testcases yet
* -fixing some memory leaks from #3667, also reindentation and code cleanupChristian Grothoff2015-02-10
|
* -eliminate dead argument, do use quota immediatelyChristian Grothoff2015-02-09
|
* -do only send HELLO to clients once on startup, do only send fully ↵Christian Grothoff2015-02-09
| | | | initialized HELLO to clients if we can help it, even the first one; do not perform blacklist check twice for try_connect
* more dead and duplicate code eliminationChristian Grothoff2015-02-08
|
* -bringing copyright tags up to FSF standardChristian Grothoff2015-02-07
|
* Various changes:Christian Grothoff2015-02-05
| | | | | | | | | | | | | | | - removed "in_use" from being passed to ATS, no longer needed as we tell ATS when we cannot follow a suggestion by removing the address; simplifies the code a lot - better handling of state machine, fallback to primary session if address switch to new session timed out - nicer logging - more comments - new testcase failures, because of #3652, #3651 and #3650 (or more that i missed).
* add internal API to enable telling ATS about 'failed' suggestionsChristian Grothoff2015-02-03
|
* -assert to check API useChristian Grothoff2015-02-03
|
* -fix NPEChristian Grothoff2015-02-03
|
* separate ATS interface scanning logic from ATS scheduling logicChristian Grothoff2015-02-03
|
* separate ATS connectivity suggestions from ATS scheduling APIChristian Grothoff2015-02-03
|
* document API, do not pass unused 'session' argumentChristian Grothoff2015-02-03
|
* adding statistics on why transport may drop ATS suggestionsChristian Grothoff2015-02-03
|
* dramatically simplify quota notification: avoid registration, simply always ↵Christian Grothoff2015-02-02
| | | | notify plugin
* reduce callback insanity for callbacks that are always bound to only one valueChristian Grothoff2015-02-02
|
* avoid passing both PeerIdentity and Address (which contains PeerIdentity) if ↵Christian Grothoff2015-02-02
| | | | address is always present as then this is redundant
* fix #3630Christian Grothoff2015-02-01
|
* cleaning up UDP code to use only on address format throughout the code as ↵Christian Grothoff2015-02-01
| | | | much as possible
* fix shutdown order to destroy sessions first, fix logic failure with respect ↵Christian Grothoff2015-01-25
| | | | to bi-directional transports like UNIX
* -undo bad commitChristian Grothoff2015-01-25
|
* -indentation plugin_transport_udp.cChristian Grothoff2015-01-25
|
* -towards improved ATS API, adding return value with address record when ↵Christian Grothoff2015-01-19
| | | | adding address, adding new subsystem with peer-to-address map to transport; causes various new assertions to fail, but no major regression -- not finished
* -remarking on things to fixChristian Grothoff2015-01-18
|
* remove ATS information from callback from ATS address selection, as the ↵Christian Grothoff2015-01-18
| | | | argument was never used in the first place
* removing dead logic to copy and pass around unused ATS valuesChristian Grothoff2015-01-18
|
* -just indentation, dead codeChristian Grothoff2015-01-18
|
* simplify ATS API and plugin API by returning the network type, instead of an ↵Christian Grothoff2015-01-17
| | | | ATS_Information struct
* eliminating callback argument and its implementation which are never called ↵Christian Grothoff2015-01-17
| | | | in the first place by ATS
* making GNUNET_SCHEDULER_cancel() perform in O(1) instead of O(n) to help or ↵Christian Grothoff2014-12-24
| | | | even fully address #3247
* -indentation, doxygenChristian Grothoff2014-11-23
|
* using tcp terminology for 3 way handshake: syn/syn_ack/ack Matthias Wachs2014-08-28
| | | | | renaming all functions, states, messages ...
* minor changesMatthias Wachs2014-07-17
|
* -simplify logic a bit, doxygen, indentationChristian Grothoff2014-06-22
|
* new test caseMatthias Wachs2014-05-20
|
* re-add address on connectMatthias Wachs2014-03-28
|
* We do not need the address and session hereMatthias Wachs2014-03-27
|
* blacklist checks have to be cancelled when session is terminated, especially ↵Matthias Wachs2014-03-27
| | | | when blacklist clients are active
* remove debugging breaksMatthias Wachs2014-03-26
|
* Do blacklist checks on CONNECT before giving CONNECT to neighbours.Matthias Wachs2014-03-25
| | | | | | | | | If peer is blacklisted we do not need to to anything, this simplifies the state machine: If peer is blacklisted: CONNECT is not given to neighbours If address is blacklisted: address is not given to ATS and will therefore not be suggested So neighbour can use this information without additional blacklist checks
* improved log messageMatthias Wachs2014-03-20
|
* session end function must include address to notify addressMatthias Wachs2014-03-20
|
* formattingMatthias Wachs2014-03-19
|
* send receive delay rescheduling supportMatthias Wachs2014-01-30
|
* documentation for transport serviceMatthias Wachs2014-01-16
|
* transport validation monitoring API (not yet complete) + CLIMatthias Wachs2014-01-15
| | | | | + fix for crash in transport/plugin_transport_udp.c
* improved checking for directionMatthias Wachs2014-01-14
|
* improved log messagesMatthias Wachs2014-01-14
|
* implementing 0003268 to inbound information in HELLO addressesMatthias Wachs2014-01-13
| | | | | | | | | | All transport plugin functions are modified to use HELLO addresses instead of peer,address,address_length All plugins are modified to use HELLO addresses internally This commit can break transport functionality: core tests on my system still pass, but transport tests may still fail, errors messages may occurs or crashs Will be fixed asap
* extending ATS api suggest callback with peer idMatthias Wachs2014-01-09
| | | | | adding suggest continuation