summaryrefslogtreecommitdiff
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
...
* Use new connect syntaxKurt Pattyn2014-01-207-23/+26
| | | | | Change-Id: I0b48c6cba12902d910c4f586fa105a13d084a437 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Limit line length to 100 chars per lineKurt Pattyn2014-01-205-5/+10
| | | | | Change-Id: I2a91033c9882ca54c6fcf26d9eb5a3c91f9e0f7d Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Rename enumerations to comply with Qt styleKurt Pattyn2014-01-183-3/+3
| | | | | Change-Id: Id72fe27cec606e7f02b8e9ac1d0d763890e86a95 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Add extra documentationKurt Pattyn2013-12-227-0/+356
| | | | | Change-Id: I1a3c0571faeabf2d05bc144628d186e5ff039014 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Fix SSL examplesKurt Pattyn2013-12-221-2/+6
| | | | | | | Only include ssl examples when ssl is enabled in Qt Change-Id: I1ab8ec068980c0b6b9f19b47d05ae8fee3d17e79 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Cleanup code to comply with Qt styleKurt Pattyn2013-12-106-14/+24
| | | | | | | | | | | | | | - Correct placement of curly braces - Remove commented-out code - Remove superfluous qDebug statements - Add missing QT_BEGIN_NAMESPACE declarations - Add move semantics - Add cleanup handling to QWebSocketServerPrivate - Add error handling to handshake response, QWebSocketServerPrivate, QWebSocketServer, dataprocessor Change-Id: I0690dc2c444fd6fc0db974d1459bf41bd8c31d40 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Add QML websockets pluginKurt Pattyn2013-11-252-8/+39
| | | | | | Change-Id: I9454cf339f8af5515d3a91667d8c8ded3659d18b Reviewed-by: Milian Wolff <milian.wolff@kdab.com> Reviewed-by: Alan Alpert (Personal) <416365416c@gmail.com>
* Change open method so that a web socket can be reopenedKurt Pattyn2013-11-182-1/+4
| | | | | Change-Id: I1c7059a8e581ce5179c00f187b03f59fbed63ba6 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Add NON_SECURE_MODE parameter to QWebSocketServer constructorKurt Pattyn2013-11-071-1/+1
| | | | | Change-Id: I9e2e892b67490061f08d03b87a8dc3de288a09e5 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Change url to localhostKurt Pattyn2013-11-061-2/+1
| | | | | Change-Id: I6a33add4244d78e703f1d0c8ae39d42017383b26 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Add sslEchoClient and sslEchoServer examplesKurt Pattyn2013-11-0618-14/+638
| | | | | | | Add license headers Change-Id: Ied74cb3db6ceed6c3f361e4afac860a7a3fb7676 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Add html client for echo server exampleKurt Pattyn2013-11-062-0/+104
| | | | | Change-Id: I1d6c47c9fc5e68f8eabf92db5a91e645319572fb Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Add chat server exampleKurt Pattyn2013-11-066-1/+345
| | | | | Change-Id: Iec7e9be0d2e397737ab12b898ac31bca200f05c1 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Sanitize .pro filesKurt Pattyn2013-11-022-4/+0
| | | | | | | | Remove c++11 config flag if not necessary Remove mac specific compiler settings Change-Id: If3cb4c5396f6dd5679a9fc8cf8f8a81c34ad6f4c Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Use QT namespace and forward declarationsKurt Pattyn2013-11-024-2/+8
| | | | | Change-Id: I67a0ee96f2e21ed441bb10f55c6bf8180245846b Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Add correct license headersKurt Pattyn2013-11-018-36/+320
| | | | | Change-Id: I789cd780697aedbca7a90a5991df00b2c7e9ec98 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Include qml example on when quick is availableKurt Pattyn2013-11-011-2/+2
| | | | | Change-Id: I35956c27253819ddacbb2abd403b06f97e57bd31 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Add functionality to ignore ssl errorsKurt Pattyn2013-11-011-1/+1
| | | | | Change-Id: I81248b9af104c0b3d37c9cfcef250a102f4b1d32 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* make use of the new Q_NULLPTR keyword & shorten if(ptr) conditionsSteven Ceuppens2013-10-113-6/+6
| | | | | Change-Id: I4a71909134032d10b398ede74c431964bce7d675 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Changes to integrate the websocket module as a full Qt Add-On moduleSteven Ceuppens2013-09-287-9/+95
| | | | | | | | | | | | | | | | | | | | | - Changed project files to use Qt structure - Moved existing sources into subdirectory, to make room for moduels - Created a "import/qmlwebsocket" module skeleton (works, but needs to be extended) - Modified examples to not use "include(.pri)", but use "QT += websocket" - Added qml example skeleton (works, but no useful functionality yet) Project can be build with: $ qmake $ make $ make install Module can be used in other projects with QT += websockets Change-Id: I2123026958b264670dbf8a978dee76edf5855806 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
* Added -Wextra compiler checkKurt Pattyn2013-08-302-6/+10
|
* Replaced tabs by spacesKurt Pattyn2013-08-256-60/+60
|
* Renamed qwebsocket.pri to qwebsockets.priKurt Pattyn2013-08-252-2/+2
|
* Cleaned up the project filesKurt Pattyn2013-08-252-2/+4
|
* Replaced write() methods with send() methods to comply with the ↵Kurt Pattyn2013-08-252-3/+3
| | | | QAbstractSocket API
* Renamed websocket.pri to qwebsocket.priKurt Pattyn2013-08-252-2/+2
|
* Renamed source directory to src (to be in line with Qt)Kurt Pattyn2013-08-252-2/+2
|
* Added cache() command at start of .pro file to avoid qmake warnings in OS XKurt Pattyn2013-08-241-0/+1
|
* Renamed WebSocket to QWebSocketKurt Pattyn2013-08-243-13/+13
| | | | | | | Renamed WebSocketProtocol to QWebSocketProtocol Renamed WebSocketServer to QWebSocketServer Adapted source files to include renamed headers Added qwebsocketsglobal.h file
* Added server name field to constructorKurt Pattyn2013-08-221-1/+1
|
* Added doxygen snippet tagsKurt Pattyn2013-08-131-0/+6
|
* Added doxygen snippet tagsKurt Pattyn2013-08-131-0/+10
|
* Renamed WebWocketClient to EchoClient to be consistent with the EchoServer ↵Kurt Pattyn2013-08-135-17/+16
| | | | | | example Added QUrl parameter to constructor
* Renamed WebWocketClient to EchoClient to be consistent with the EchoServer ↵Kurt Pattyn2013-08-134-0/+0
| | | | example
* Cleaned up .pro fileKurt Pattyn2013-08-121-9/+2
|
* Renamed HelloWorldServer to EchoServerKurt Pattyn2013-08-126-40/+31
|
* Adapted helloworldserver to use new signals (has been tested against autobahn)Kurt Pattyn2013-08-072-13/+18
|
* Removed file, because coverity does not workKurt Pattyn2013-08-061-3/+0
|
* Added analyse script for CoverityKurt Pattyn2013-08-041-0/+3
|
* Added examples for WebSocket usageKurt Pattyn2013-08-039-0/+206