summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2013-08-25 19:28:20 +0200
committerKurt Pattyn <pattyn.kurt@gmail.com>2013-08-25 19:28:20 +0200
commit2001231672a9fff74564441b3955f92050572d10 (patch)
tree359da7b448126fd9bdcaf7ab732ab2769aed8f8c
parent17cecefb9a949048b0bfcb9031aaa647ef32029b (diff)
downloadqtwebsockets-2001231672a9fff74564441b3955f92050572d10.tar.gz
Adapted copyright disclaimer to be a pure C++ comment
-rw-r--r--src/dataprocessor_p.cpp2
-rw-r--r--src/dataprocessor_p.h3
-rw-r--r--src/handshakerequest_p.cpp2
-rw-r--r--src/handshakerequest_p.h3
-rw-r--r--src/handshakeresponse_p.cpp2
-rw-r--r--src/handshakeresponse_p.h3
-rw-r--r--src/qwebsocket.cpp2
-rw-r--r--src/qwebsocket.h3
-rw-r--r--src/qwebsocket_p.cpp2
-rw-r--r--src/qwebsocket_p.h3
-rw-r--r--src/qwebsocketprotocol.cpp2
-rw-r--r--src/qwebsocketprotocol.h3
-rw-r--r--src/qwebsocketserver.cpp2
-rw-r--r--src/qwebsocketserver.h3
-rw-r--r--src/qwebsocketserver_p.cpp2
-rw-r--r--src/qwebsocketserver_p.h2
-rw-r--r--src/qwebsocketsglobal.h2
17 files changed, 24 insertions, 17 deletions
diff --git a/src/dataprocessor_p.cpp b/src/dataprocessor_p.cpp
index 7048899..d504b20 100644
--- a/src/dataprocessor_p.cpp
+++ b/src/dataprocessor_p.cpp
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/dataprocessor_p.h b/src/dataprocessor_p.h
index d47bed7..7c1dd2d 100644
--- a/src/dataprocessor_p.h
+++ b/src/dataprocessor_p.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
@@ -16,6 +16,7 @@ You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
#ifndef DATAPROCESSOR_P_H
#define DATAPROCESSOR_P_H
diff --git a/src/handshakerequest_p.cpp b/src/handshakerequest_p.cpp
index 437e7f1..2d51e25 100644
--- a/src/handshakerequest_p.cpp
+++ b/src/handshakerequest_p.cpp
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/handshakerequest_p.h b/src/handshakerequest_p.h
index 984b7c0..6345a91 100644
--- a/src/handshakerequest_p.h
+++ b/src/handshakerequest_p.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
@@ -16,6 +16,7 @@ You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
#ifndef HANDSHAKEREQUEST_P_H
#define HANDSHAKEREQUEST_P_H
//
diff --git a/src/handshakeresponse_p.cpp b/src/handshakeresponse_p.cpp
index 85acd98..c48af00 100644
--- a/src/handshakeresponse_p.cpp
+++ b/src/handshakeresponse_p.cpp
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/handshakeresponse_p.h b/src/handshakeresponse_p.h
index e3a0584..74ddc65 100644
--- a/src/handshakeresponse_p.h
+++ b/src/handshakeresponse_p.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
@@ -16,6 +16,7 @@ You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
#ifndef HANDSHAKERESPONSE_P_H
#define HANDSHAKERESPONSE_P_H
//
diff --git a/src/qwebsocket.cpp b/src/qwebsocket.cpp
index f4b4c79..a2a4283 100644
--- a/src/qwebsocket.cpp
+++ b/src/qwebsocket.cpp
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/qwebsocket.h b/src/qwebsocket.h
index 5dcfff2..2443e01 100644
--- a/src/qwebsocket.h
+++ b/src/qwebsocket.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
@@ -16,6 +16,7 @@ You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
#ifndef QWEBSOCKET_H
#define QWEBSOCKET_H
diff --git a/src/qwebsocket_p.cpp b/src/qwebsocket_p.cpp
index 9e38dd8..ed9586b 100644
--- a/src/qwebsocket_p.cpp
+++ b/src/qwebsocket_p.cpp
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/qwebsocket_p.h b/src/qwebsocket_p.h
index a06aa50..1d40fd1 100644
--- a/src/qwebsocket_p.h
+++ b/src/qwebsocket_p.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
@@ -16,6 +16,7 @@ You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
#ifndef QWEBSOCKET_P_H
#define QWEBSOCKET_P_H
//
diff --git a/src/qwebsocketprotocol.cpp b/src/qwebsocketprotocol.cpp
index b168efb..6c61ed1 100644
--- a/src/qwebsocketprotocol.cpp
+++ b/src/qwebsocketprotocol.cpp
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/qwebsocketprotocol.h b/src/qwebsocketprotocol.h
index 9fa49bf..26584eb 100644
--- a/src/qwebsocketprotocol.h
+++ b/src/qwebsocketprotocol.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
@@ -16,6 +16,7 @@ You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
#ifndef QWEBSOCKETPROTOCOL_H
#define QWEBSOCKETPROTOCOL_H
diff --git a/src/qwebsocketserver.cpp b/src/qwebsocketserver.cpp
index 32cabdf..97393f9 100644
--- a/src/qwebsocketserver.cpp
+++ b/src/qwebsocketserver.cpp
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/qwebsocketserver.h b/src/qwebsocketserver.h
index 6a71576..05b3fff 100644
--- a/src/qwebsocketserver.h
+++ b/src/qwebsocketserver.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
@@ -16,6 +16,7 @@ You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
#ifndef QWEBSOCKETSERVER_H
#define QWEBSOCKETSERVER_H
diff --git a/src/qwebsocketserver_p.cpp b/src/qwebsocketserver_p.cpp
index 2b26dba..4370cdb 100644
--- a/src/qwebsocketserver_p.cpp
+++ b/src/qwebsocketserver_p.cpp
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/qwebsocketserver_p.h b/src/qwebsocketserver_p.h
index e65120d..6ab1d20 100644
--- a/src/qwebsocketserver_p.h
+++ b/src/qwebsocketserver_p.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
diff --git a/src/qwebsocketsglobal.h b/src/qwebsocketsglobal.h
index 22b7440..f81eee5 100644
--- a/src/qwebsocketsglobal.h
+++ b/src/qwebsocketsglobal.h
@@ -1,4 +1,4 @@
-/*!
+/*
QWebSockets implements the WebSocket protocol as defined in RFC 6455.
Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)