There was no '?' between path and query. Bug detected by someone on the internet.
[contrib/qtwebsockets.git] / src / qcorsauthenticator.h
1 /*
2 QWebSockets implements the WebSocket protocol as defined in RFC 6455.
3 Copyright (C) 2013 Kurt Pattyn (pattyn.kurt@gmail.com)
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18 */
19 #ifndef QCORSAUTHENTICATOR_H
20 #define QCORSAUTHENTICATOR_H
21
22 #include "qwebsocketsglobal.h"
23
24 QT_BEGIN_NAMESPACE
25
26 class QCorsAuthenticatorPrivate;
27
28 class Q_WEBSOCKETS_EXPORT QCorsAuthenticator
29 {
30 public:
31     QCorsAuthenticator(const QString &origin);
32     ~QCorsAuthenticator();
33     QCorsAuthenticator(const QCorsAuthenticator &other);
34
35     QCorsAuthenticator &operator =(const QCorsAuthenticator &other);
36
37     QString origin() const;
38
39     void setAllowed(bool allowed);
40     bool allowed() const;
41
42 private:
43     Q_DECLARE_PRIVATE(QCorsAuthenticator)
44
45     QCorsAuthenticatorPrivate * const d_ptr;
46 };
47
48 #endif // QCORSAUTHENTICATOR_H