- 10 Nov, 2014 - 1 commit
-
-
Oswald Buddenhagen authored
Change-Id: Iae18d5786396e50244c59773b3b0289347e3ef45
-
- 03 Nov, 2014 - 3 commits
-
-
Joni Poikelin authored
Fix invalid Date header in handshake response on systems with non- english system locale. Task-number: QTBUG-40866 Change-Id: If6d5cc55e879eff259698e87c9cda753990245e7 Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
Christian Kandeler authored
Otherwise all code that calls it has to handle the other connections separately, which is error-prone and has actually been forgotten for the case where the QWebSocket is created via upgradeFrom(). Task-number: QTBUG-39551 Change-Id: I4d1e4faa1594b53e7a8dccc9ce13ef2c323b1c61 Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
Maurice Kalinowski authored
This is required for for the autotests to compile. Change-Id: I8cd1ad11ca5d28e2d1ade06649cf6c2e1eee9a2c Reviewed-by:
Oliver Wolff <oliver.wolff@digia.com> (cherry picked from commit aef4cba4)
-
- 15 Oct, 2014 - 1 commit
-
-
Peter Kümmel authored
The signal bytesWritten(qint64) is part of the public API and should be emitted. Seems it was just forgotten. Change-Id: I85a56c22581c6bd3ecc504add34aeeabc76f4d2a Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
- 14 Oct, 2014 - 1 commit
-
-
Milian Wolff authored
I forgot to do this when I introduced the QQmlWebSocketServer. Change-Id: I7fd7354cf42f633973e0da71d854594627e2fb97 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@digia.com>
-
- 28 Sep, 2014 - 1 commit
-
-
Alex Blasche authored
1.) The websocket qml types page is now hooked into Qt's QML Type by Module page. 2.) Correct incorrectly documented import statement for Qt.WebSockets module in QML. 3.) Add missing \since tags (see QTBUG-36775). Change-Id: I1321db70215fcd16cfbd77dd71a459244241d8a3 Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com>
-
- 16 Sep, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Conflicts: .qmake.conf Change-Id: Ib38d0c86aa010b06b9a201115dfbc9f091abeb0e
-
- 09 Sep, 2014 - 1 commit
-
-
Jorma Tähtinen authored
QWebSocketServer should not use case-sensitive compare to validate http headers for incoming connections. Change-Id: Ie7b8a9f6ca1a0b547eb7a924f6392395f812b0e3 Task-number: QTBUG-40615 Reviewed-by:
Jędrzej Nowacki <jedrzej.nowacki@digia.com>
-
- 29 Aug, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Change-Id: I7da486fc6640df27695971c70bbb50a842b9cca2
-
- 24 Aug, 2014 - 1 commit
-
-
Antti Kokko authored
- Added LICENSE.LGPLv3, LICENSE.GPLv2 & LICENSE.LGPLv21 Change-Id: I0586e35a7aa99be1b5b3bda580b05897f451acbf Reviewed-by:
Jani Heikkinen <jani.heikkinen@digia.com>
-
- 13 Aug, 2014 - 2 commits
-
-
Andrew Knight authored
Qt 5.4 introduced the ability to split out the OpenSSL-specific parts of SSL, so allow users of this configuration to still build the SSL server. Change-Id: I03e446c1c0fa4062afe16e58d1b7a80373da12a6 Reviewed-by:
Maurice Kalinowski <maurice.kalinowski@digia.com>
-
Maurice Kalinowski authored
Visual Studio 2013 Update 3 ARM compiler has issues with the code path trying to optimize it. Instead of disabling optimization in general, use a pragma for the function. x86 compilation is fine though. Change-Id: If099f7d1400cb78958d10c2fd35daef3bb75fc91 Reviewed-by:
Andrew Knight <andrew.knight@digia.com>
-
- 08 Aug, 2014 - 2 commits
-
-
Oswald Buddenhagen authored
Change-Id: I69b07bfdb69ec4f9ad8c7bf0e6fc327b76113de6 Reviewed-by:
Milian Wolff <milian.wolff@kdab.com>
-
Oswald Buddenhagen authored
that's been deprecated since the 5.0 release or so. Change-Id: Icbb9f375261a79b708cce4b6e2a70f71140de1d4 Reviewed-by:
Milian Wolff <milian.wolff@kdab.com>
-
- 14 Jul, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Conflicts: src/imports/qmlwebsockets/qqmlwebsocket.h Change-Id: Ib883a07eb1784743adca7a0c38fd156800354f4b
-
- 11 Jul, 2014 - 1 commit
-
-
Sergio Martins authored
Otherwise Q_NULLPTR appears in documentation, which is inconsistent. Change-Id: I0f4b07b25c6012d502938aa452e68c75d910f954 Reviewed-by:
hjk <hjk121@nokiamail.com> Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com>
-
- 07 Jul, 2014 - 2 commits
-
-
Maurice Kalinowski authored
Change-Id: I8cd1ad11ca5d28e2d1ade06649cf6c2e1eee9a2c Reviewed-by:
Oliver Wolff <oliver.wolff@digia.com>
-
Jerome Pasion authored
-url inherited from the url variable set in qtbase/doc/global Change-Id: I55312f10a949dc75fdfbf644631fc844afc29329 Reviewed-by:
Martin Smith <martin.smith@digia.com>
-
- 02 Jul, 2014 - 1 commit
-
-
Milian Wolff authored
It comes with basic support for setting up a non-secure server listening on an arbitrary host and port. The name can be set, and whether the server should be listening or accept connections. The error string is also available via a property. When a client connects, a clientConnected(QQmlWebSocket*) signal is emitted. To showcase the usage and functionality, a new qmlwebsocketserver example is added which behaves similar to qmlwebsocketclient. It simply sends messages from a WebSocket to a local WebSocketServer which in turn sends a simple response. Change-Id: Ib6318155ed08cbeea47d820b709764d2e36dcc45 Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
- 26 Jun, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Conflicts: .qmake.conf Change-Id: Idce64ab613c4e07ffb38cac4115690b885f110f2
-
- 25 Jun, 2014 - 1 commit
-
-
Jędrzej Nowacki authored
Change-Id: I25c9b9be2c780dae32e3f634f58e44be303a4b23 Task-number: QTBUG-39568 Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
- 17 Jun, 2014 - 1 commit
-
-
Oswald Buddenhagen authored
Change-Id: I509b98fb944d007cc1e2727e5b6fa8661767c1a6
-
- 14 Jun, 2014 - 1 commit
-
-
Sergio Ahumada authored
Conflicts: .qmake.conf Change-Id: I8ef1da19810c1bf4d68bf157848bccb5446669cc
-
- 11 Jun, 2014 - 1 commit
-
-
Topi Reinio authored
A recent change (46959875) in qdoc raised QML types from subnodes to top-level nodes. This change modifies the documentation configuration file(s) accordingly. Change-Id: I558f00483b4f2efaa12c94066e309f46ea6e9b42 Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com> Reviewed-by:
Martin Smith <martin.smith@digia.com>
-
- 08 Jun, 2014 - 1 commit
-
-
Milian Wolff authored
It is useful in many places, esp. when constructing clients that should connect to the server we created. Note that the returned host address will be LocalHost instead of Any, to make sure clients can connect to the server even on Windows. This should hopefully resolve the CI issues. Change-Id: I3c400ad4d785ea398cf1a1bd113c0833fda9e3bd Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
- 27 May, 2014 - 1 commit
-
-
Fatih Aşıcı authored
Change-Id: I102bcb81ec53d022480e81a3632b93d42bf33403 Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com> Reviewed-by:
Davide Pesavento <davidepesa@gmail.com>
-
- 26 May, 2014 - 1 commit
-
-
Sergio Ahumada authored
Change-Id: I1eff9112ed777d873961854b3f81a00d34cb3e1f Reviewed-by:
Jani Heikkinen <jani.heikkinen@digia.com>
-
- 23 May, 2014 - 1 commit
-
-
Richard Moe Gustavsen authored
Change-Id: I38c08520c37d84570c3c8df9d2416131defc5b40 Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
- 14 May, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Change-Id: I9de811ee1f43381b6ce27acd47a126a70fd10d46
-
- 09 May, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Task-number: QTBUG-38854 Change-Id: Iad6d49309010fd9ccb7e8fcb2c58962d811f018f Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by:
Simon Hausmann <simon.hausmann@digia.com>
-
- 08 May, 2014 - 1 commit
-
-
Thiago Macieira authored
The one from QtNetwork is more efficient, since it doesn't use regular expressions. This also solves a use of uninitialised variables. error: ‘httpStatusCode’ may be used uninitialized in this function [-Werror=maybe-uninitialized] Change-Id: Id7f203d971564651eb0bd63d3d54d074be947793 Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
- 05 May, 2014 - 1 commit
-
-
Kurt Pattyn authored
Change-Id: I3a6f9881cbd19f409f6d345fde640b9899dad196 Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-
- 11 Apr, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Change-Id: Iff68a7da2065b64579032f1be8eaf5fb097d58bb
-
- 10 Apr, 2014 - 1 commit
-
-
Kurt Pattyn authored
Change-Id: Ifbce704186a76b57a4b557b6fc6bfda004517800 Reviewed-by:
Sze Howe Koh <szehowe.koh@gmail.com> Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
- 09 Apr, 2014 - 2 commits
-
-
Jędrzej Nowacki authored
Task-number: QTBUG-37975 Change-Id: I81225a870aa92350e959b741aec34332eb8d171e Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
Sze Howe Koh authored
- "WebSocket" is one word, with uppercase 'W' and 'S'. - "HTTP"/"HTTPS" is fully uppercase Change-Id: Ice3a50c94394433c97f7347291af5cda69b234ce Reviewed-by:
Kurt Pattyn <pattyn.kurt@gmail.com>
-
- 04 Apr, 2014 - 1 commit
-
-
Sergio Ahumada authored
Add Q_DECL_NOEXCEPT to 'bool seed()' and 'quint32 nextMask()' qdefaultmaskgenerator_p.cpp:93:34: error: declaration of 'virtual bool QDefaultMaskGenerator::seed()' has a different exception specifier qdefaultmaskgenerator_p.h:69:10: error: from previous declaration 'virtual bool QDefaultMaskGenerator::seed() noexcept (true)' qdefaultmaskgenerator_p.cpp:104:41: error: declaration of 'virtual quint32 QDefaultMaskGenerator::nextMask()' has a different exception specifier qdefaultmaskgenerator_p.h:70:13: error: from previous declaration 'virtual quint32 QDefaultMaskGenerator::nextMask() noexcept (true)' Change-Id: Iae49a060fa62a33f629cadc1a0100653a12432f7 Reviewed-by:
Olivier Goffart <ogoffart@woboq.com> Reviewed-by:
Fabian Bumberger <fbumberger@rim.com> Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-
- 24 Mar, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Change-Id: I7215c289188462383799269aa9b736ae76db4d25
-
- 21 Mar, 2014 - 1 commit
-
-
Topi Reinio authored
Task-number: QTBUG-37643 Change-Id: Ifce8f4016c70642a7ae344b0bab463eb201460df Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-