2011-05-04 06:36:23 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-05-04 06:36:23 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_net_BaseWebSocketChannel_h
|
|
|
|
#define mozilla_net_BaseWebSocketChannel_h
|
|
|
|
|
2011-07-04 21:18:32 -07:00
|
|
|
#include "nsIWebSocketChannel.h"
|
|
|
|
#include "nsIWebSocketListener.h"
|
2011-05-04 06:36:23 -07:00
|
|
|
#include "nsIProtocolHandler.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
const static int32_t kDefaultWSPort = 80;
|
|
|
|
const static int32_t kDefaultWSSPort = 443;
|
2011-05-04 06:36:23 -07:00
|
|
|
|
2011-07-04 21:18:32 -07:00
|
|
|
class BaseWebSocketChannel : public nsIWebSocketChannel,
|
2011-05-04 06:36:23 -07:00
|
|
|
public nsIProtocolHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BaseWebSocketChannel();
|
|
|
|
|
|
|
|
NS_DECL_NSIPROTOCOLHANDLER
|
|
|
|
|
2012-07-06 13:14:07 -07:00
|
|
|
NS_IMETHOD QueryInterface(const nsIID & uuid, void **result) = 0;
|
2011-05-04 06:36:23 -07:00
|
|
|
NS_IMETHOD_(nsrefcnt ) AddRef(void) = 0;
|
|
|
|
NS_IMETHOD_(nsrefcnt ) Release(void) = 0;
|
|
|
|
|
2011-07-04 21:18:32 -07:00
|
|
|
// Partial implementation of nsIWebSocketChannel
|
2011-05-04 06:36:23 -07:00
|
|
|
//
|
|
|
|
NS_IMETHOD GetOriginalURI(nsIURI **aOriginalURI);
|
|
|
|
NS_IMETHOD GetURI(nsIURI **aURI);
|
|
|
|
NS_IMETHOD GetNotificationCallbacks(nsIInterfaceRequestor **aNotificationCallbacks);
|
|
|
|
NS_IMETHOD SetNotificationCallbacks(nsIInterfaceRequestor *aNotificationCallbacks);
|
|
|
|
NS_IMETHOD GetLoadGroup(nsILoadGroup **aLoadGroup);
|
|
|
|
NS_IMETHOD SetLoadGroup(nsILoadGroup *aLoadGroup);
|
2011-08-03 20:46:13 -07:00
|
|
|
NS_IMETHOD GetExtensions(nsACString &aExtensions);
|
2011-05-04 06:36:23 -07:00
|
|
|
NS_IMETHOD GetProtocol(nsACString &aProtocol);
|
|
|
|
NS_IMETHOD SetProtocol(const nsACString &aProtocol);
|
2013-04-05 13:52:12 -07:00
|
|
|
NS_IMETHOD GetPingInterval(uint32_t *aSeconds);
|
|
|
|
NS_IMETHOD SetPingInterval(uint32_t aSeconds);
|
|
|
|
NS_IMETHOD GetPingTimeout(uint32_t *aSeconds);
|
|
|
|
NS_IMETHOD SetPingTimeout(uint32_t aSeconds);
|
2011-05-04 06:36:23 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsIURI> mOriginalURI;
|
|
|
|
nsCOMPtr<nsIURI> mURI;
|
|
|
|
nsCOMPtr<nsIWebSocketListener> mListener;
|
|
|
|
nsCOMPtr<nsISupports> mContext;
|
|
|
|
nsCOMPtr<nsIInterfaceRequestor> mCallbacks;
|
|
|
|
nsCOMPtr<nsILoadGroup> mLoadGroup;
|
|
|
|
|
|
|
|
nsCString mProtocol;
|
|
|
|
nsCString mOrigin;
|
|
|
|
|
2011-08-03 20:46:13 -07:00
|
|
|
nsCString mNegotiatedExtensions;
|
2013-03-28 15:52:16 -07:00
|
|
|
|
|
|
|
uint32_t mEncrypted : 1;
|
|
|
|
uint32_t mWasOpened : 1;
|
|
|
|
uint32_t mClientSetPingInterval : 1;
|
|
|
|
uint32_t mClientSetPingTimeout : 1;
|
|
|
|
|
|
|
|
uint32_t mPingInterval; /* milliseconds */
|
|
|
|
uint32_t mPingResponseTimeout; /* milliseconds */
|
2011-05-04 06:36:23 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_net_BaseWebSocketChannel_h
|