| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Replace Q_FOREACH (foreach) by C++11 ranged for-loops | Linus Jahn | 2019-10-23 | 1 | -40/+35 |
| | | | | | | | | Q_FOREACH is bad and will be deprecated in the future: https://www.kdab.com/goodbye-q_foreach/ This also disables Q_FOREACH by defining QT_NO_FOREACH. | ||||
| * | Use raw literals, range based loops and auto | Jonah Brüchert | 2019-10-22 | 1 | -13/+11 |
| | | |||||
| * | Modernize codebase using clang-tidy | Jonah Brüchert | 2019-09-08 | 1 | -14/+14 |
| | | | | | | | | | Using the following checks: * modernize-use-nullptr * modernize-use-override * modernize-use-using * modernize-use-bool-literals | ||||
| * | Port deprecated qSort invocations to std::sort | Jonah Brüchert | 2019-09-03 | 1 | -3/+3 |
| | | |||||
| * | Bump copyright year to 2019 | Jeremy Lainé | 2019-01-08 | 1 | -1/+1 |
| | | |||||
| * | Add missed variables initialization in constructors of few classes. | Boris Pek | 2018-09-18 | 1 | -1/+2 |
| | | |||||
| * | Add QXmppIceConnection::gatheringState property | Jeremy Lainé | 2015-09-03 | 1 | -1/+76 |
| | | |||||
| * | add some code docs for QXmppIceConnection | Jeremy Lainé | 2015-08-27 | 1 | -0/+11 |
| | | |||||
| * | trim QXmppIceComponent API down to bare minimal | Jeremy Lainé | 2015-08-27 | 1 | -63/+34 |
| | | |||||
| * | share ICE config | Jeremy Lainé | 2015-08-27 | 1 | -32/+22 |
| | | |||||
| * | reduce QXmppIceComponent public API | Jeremy Lainé | 2015-08-27 | 1 | -109/+97 |
| | | |||||
| * | QXmppIceComponent: prevent changing component ID | Jeremy Lainé | 2015-08-27 | 1 | -27/+16 |
| | | |||||
| * | remove setRemoteUser / setRemotePassword from ICE component public API | Jeremy Lainé | 2015-08-27 | 1 | -22/+4 |
| | | |||||
| * | ICE: do not allow setting local user / password | Jeremy Lainé | 2015-08-27 | 1 | -56/+3 |
| | | | | | | | | | | Making it possible to change the local ICE user fragment or password complicates the state machine significantly. To avoid users shooting themselves in the foot, remove this API. Also make it clear that QXmppIceComponent cannot be used separately from QXmppIceConnection by making its constructor private. | ||||
| * | hide QXmppIceConnection internals | Jeremy Lainé | 2015-08-27 | 1 | -69/+105 |
| | | |||||
| * | ICE: do not send STUN check for incompatible addresses | Jeremy Lainé | 2015-08-26 | 1 | -4/+13 |
| | | |||||
| * | exclude loopback addresses | Jeremy Lainé | 2015-08-26 | 1 | -0/+10 |
| | | |||||
| * | ICE: use actual transactions for STUN tests | Jeremy Lainé | 2015-08-25 | 1 | -102/+111 |
| | | |||||
| * | ICE: use QXmppUdpTransport | Jeremy Lainé | 2015-08-25 | 1 | -105/+135 |
| | | |||||
| * | add a QXmppIceTransport base class | Jeremy Lainé | 2015-08-25 | 1 | -1/+9 |
| | | |||||
| * | STUN: use a private header | Jeremy Lainé | 2015-08-25 | 1 | -1/+1 |
| | | |||||
| * | ICE: fix nomination | Jeremy Lainé | 2015-08-25 | 1 | -51/+76 |
| | | |||||
| * | ICE: rework sending STUN packet | Jeremy Lainé | 2015-08-25 | 1 | -31/+26 |
| | | |||||
| * | ICE: store remote candidates | Jeremy Lainé | 2015-08-25 | 1 | -3/+4 |
| | | |||||
| * | fix ICE pair ordering | Jeremy Lainé | 2015-08-24 | 1 | -1/+1 |
| | | |||||
| * | fix triggered connectivity check | Jeremy Lainé | 2015-08-24 | 1 | -32/+31 |
| | | |||||
| * | set candidate foundations to a sane value | Jeremy Lainé | 2015-08-24 | 1 | -3/+22 |
| | | |||||
| * | don't send triggered check if one is in progress | Jeremy Lainé | 2015-08-24 | 1 | -3/+3 |
| | | |||||
| * | handle binding error response | Jeremy Lainé | 2015-08-24 | 1 | -12/+10 |
| | | |||||
| * | tweak debugging | Jeremy Lainé | 2015-08-24 | 1 | -2/+1 |
| | | |||||
| * | fix sending triggered check | Jeremy Lainé | 2015-08-24 | 1 | -1/+3 |
| | | |||||
| * | hide QXmppIceComponent private members | Jeremy Lainé | 2015-08-24 | 1 | -116/+150 |
| | | |||||
| * | make ICE use actual STUN transactions | Jeremy Lainé | 2015-08-24 | 1 | -47/+136 |
| | | |||||
| * | use STUN_ID_SIZE consistently | Jeremy Lainé | 2015-08-24 | 1 | -13/+13 |
| | | |||||
| * | QXmppStunTransaction : delay initial message | Jeremy Lainé | 2015-08-24 | 1 | -5/+3 |
| | | |||||
| * | ICE: sort candidate pairs according RFC 5245 | Jeremy Lainé | 2015-08-24 | 1 | -0/+10 |
| | | |||||
| * | move CandidatePair definition to QXmppStun.cpp | Jeremy Lainé | 2015-08-24 | 1 | -16/+33 |
| | | |||||
| * | stop STUN retry timer when transaction completes | Jeremy Lainé | 2015-08-24 | 1 | -0/+1 |
| | | |||||
| * | ICE candidate foundation can be an arbitrary string | Jeremy Lainé | 2015-08-17 | 1 | -1/+1 |
| | | |||||
| * | ICE: do not send USERNAME in binding responses | Jeremy Lainé | 2015-08-16 | 1 | -1/+0 |
| | | |||||
| * | prine USE-CANDIDATE | Jeremy Lainé | 2015-08-16 | 1 | -0/+2 |
| | | |||||
| * | generate ICE tie breaker instead of 0 | Jeremy Lainé | 2015-08-16 | 1 | -3/+15 |
| | | |||||
| * | Remove trailing comma after last item in enums | Jeremy Lainé | 2015-03-13 | 1 | -1/+1 |
| | | | | | This allows compilation with GCC in pedantic mode. | ||||
| * | fix compilation issue with Qt 5.5, closes #40 | Jeremy Lainé | 2015-02-19 | 1 | -0/+1 |
| | | |||||
| * | update project homepage | Jeremy Lainé | 2014-03-28 | 1 | -1/+1 |
| | | |||||
| * | update project homepage | Jeremy Lainé | 2014-03-27 | 1 | -1/+1 |
| | | |||||
| * | update copyright notice to 2008-2014 | Jeremy Lainé | 2014-03-26 | 1 | -1/+1 |
| | | |||||
| * | convert QString::fromAscii to QString::fromLatin1 | Matt Broadstone | 2012-11-16 | 1 | -5/+5 |
| | | |||||
| * | re-enable IPv6 on Mac OS | Jeremy Lainé | 2012-09-17 | 1 | -6/+0 |
| | | |||||
| * | update copyright year | Jeremy Lainé | 2012-07-18 | 1 | -1/+1 |
| | | |||||
