summaryrefslogtreecommitdiff
path: root/src/websockets/qwebsocketprotocol.h
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2014-01-18 19:14:08 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-18 20:45:46 +0100
commit367a9ffcc20fd79ee1ea83e4fd5c6b6ae16c5729 (patch)
tree8e25402a7ac3d154d6901ce415903890b4f98727 /src/websockets/qwebsocketprotocol.h
parentd6abdaf4921cd375d71d9016c36d27ac83138a20 (diff)
downloadqtwebsockets-367a9ffcc20fd79ee1ea83e4fd5c6b6ae16c5729.tar.gz
Rename enumerations to comply with Qt style
Change-Id: Id72fe27cec606e7f02b8e9ac1d0d763890e86a95 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'src/websockets/qwebsocketprotocol.h')
-rw-r--r--src/websockets/qwebsocketprotocol.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/websockets/qwebsocketprotocol.h b/src/websockets/qwebsocketprotocol.h
index de62d75..c058937 100644
--- a/src/websockets/qwebsocketprotocol.h
+++ b/src/websockets/qwebsocketprotocol.h
@@ -53,38 +53,38 @@ namespace QWebSocketProtocol
{
enum Version
{
- V_Unknow = -1,
- V_0 = 0,
+ VersionUnknown = -1,
+ Version0 = 0,
//hybi-01, hybi-02 and hybi-03 not supported
- V_4 = 4,
- V_5 = 5,
- V_6 = 6,
- V_7 = 7,
- V_8 = 8,
- V_13 = 13,
- V_LATEST = V_13
+ Version4 = 4,
+ Version5 = 5,
+ Version6 = 6,
+ Version7 = 7,
+ Version8 = 8,
+ Version13 = 13,
+ VersionLatest = Version13
};
Version versionFromString(const QString &versionString);
enum CloseCode
{
- CC_NORMAL = 1000,
- CC_GOING_AWAY = 1001,
- CC_PROTOCOL_ERROR = 1002,
- CC_DATATYPE_NOT_SUPPORTED = 1003,
- CC_RESERVED_1004 = 1004,
- CC_MISSING_STATUS_CODE = 1005,
- CC_ABNORMAL_DISCONNECTION = 1006,
- CC_WRONG_DATATYPE = 1007,
- CC_POLICY_VIOLATED = 1008,
- CC_TOO_MUCH_DATA = 1009,
- CC_MISSING_EXTENSION = 1010,
- CC_BAD_OPERATION = 1011,
- CC_TLS_HANDSHAKE_FAILED = 1015
+ CloseCodeNormal = 1000,
+ CloseCodeGoingAway = 1001,
+ CloseCodeProtocolError = 1002,
+ CloseCodeDatatypeNotSupported = 1003,
+ CloseCodeReserved1004 = 1004,
+ CloseCodeMissingStatusCode = 1005,
+ CloseCodeAbnormalDisconnection = 1006,
+ CloseCodeWrongDatatype = 1007,
+ CloseCodePolicyViolated = 1008,
+ CloseCodeTooMuchData = 1009,
+ CloseCodeMissingExtension = 1010,
+ CloseCodeBadOperation = 1011,
+ CloseCodeTlsHandshakeFailed = 1015
};
-inline Version currentVersion() { return V_LATEST; }
+inline Version currentVersion() { return VersionLatest; }
} //end namespace QWebSocketProtocol