2012-09-24 11:53:49 -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/. */
|
|
|
|
|
|
|
|
#include "mozilla/net/PTCPSocketParent.h"
|
|
|
|
#include "nsITCPSocketParent.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIDOMTCPSocket.h"
|
|
|
|
|
2012-11-14 18:38:26 -08:00
|
|
|
struct JSContext;
|
2012-12-31 12:40:21 -08:00
|
|
|
class JSObject;
|
2012-09-24 11:53:49 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class PBrowserParent;
|
|
|
|
|
|
|
|
class TCPSocketParent : public mozilla::net::PTCPSocketParent
|
|
|
|
, public nsITCPSocketParent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(TCPSocketParent)
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_NSITCPSOCKETPARENT
|
|
|
|
|
|
|
|
TCPSocketParent() : mIntermediaryObj(nullptr), mIPCOpen(true) {}
|
|
|
|
|
|
|
|
bool Init(const nsString& aHost, const uint16_t& aPort,
|
2013-02-26 10:57:39 -08:00
|
|
|
const bool& useSSL, const nsString& aBinaryType);
|
2012-09-24 11:53:49 -07:00
|
|
|
|
|
|
|
virtual bool RecvSuspend() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvResume() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvClose() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvData(const SendableData& aData) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvRequestDelete() MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsITCPSocketIntermediary> mIntermediary;
|
|
|
|
nsCOMPtr<nsIDOMTCPSocket> mSocket;
|
|
|
|
JSObject* mIntermediaryObj;
|
|
|
|
bool mIPCOpen;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|