gecko/dom/network/src/TCPSocketParent.h

49 lines
1.4 KiB
C
Raw Normal View History

/* 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"
struct JSContext;
class JSObject;
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,
const bool& useSSL, const nsString& aBinaryType);
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