2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-07-29 17:36:43 +00: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/. */
|
|
|
|
|
2015-03-25 14:36:56 +00:00
|
|
|
#ifndef mozilla_dom_TCPServerSocketParent_h
|
|
|
|
#define mozilla_dom_TCPServerSocketParent_h
|
|
|
|
|
2013-07-29 17:36:43 +00:00
|
|
|
#include "mozilla/net/PNeckoParent.h"
|
|
|
|
#include "mozilla/net/PTCPServerSocketParent.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-25 14:36:56 +00:00
|
|
|
class TCPServerSocket;
|
|
|
|
class TCPServerSocketEvent;
|
|
|
|
class TCPSocketParent;
|
|
|
|
|
2013-07-29 17:36:43 +00:00
|
|
|
class TCPServerSocketParent : public mozilla::net::PTCPServerSocketParent
|
2015-03-25 14:36:56 +00:00
|
|
|
, public nsISupports
|
2013-07-29 17:36:43 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(TCPServerSocketParent)
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
|
2015-03-25 14:36:56 +00:00
|
|
|
TCPServerSocketParent(PNeckoParent* neckoParent, uint16_t aLocalPort,
|
|
|
|
uint16_t aBacklog, bool aUseArrayBuffers);
|
2013-07-29 17:36:43 +00:00
|
|
|
|
2015-03-25 14:36:56 +00:00
|
|
|
void Init();
|
2013-07-29 17:36:43 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool RecvClose() override;
|
|
|
|
virtual bool RecvRequestDelete() override;
|
2013-07-29 17:36:43 +00:00
|
|
|
|
2014-10-30 02:03:54 +00:00
|
|
|
uint32_t GetAppId();
|
2016-02-18 04:35:45 +00:00
|
|
|
bool GetInIsolatedMozBrowser();
|
2014-10-30 02:03:54 +00:00
|
|
|
|
2013-07-29 17:36:43 +00:00
|
|
|
void AddIPDLReference();
|
|
|
|
void ReleaseIPDLReference();
|
|
|
|
|
2015-03-25 14:36:56 +00:00
|
|
|
void OnConnect(TCPServerSocketEvent* event);
|
|
|
|
|
2013-07-29 17:36:43 +00:00
|
|
|
private:
|
2015-03-25 14:36:56 +00:00
|
|
|
~TCPServerSocketParent();
|
|
|
|
|
|
|
|
nsresult SendCallbackAccept(TCPSocketParent *socket);
|
2014-06-23 19:56:07 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override;
|
2013-07-29 17:36:43 +00:00
|
|
|
|
|
|
|
PNeckoParent* mNeckoParent;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<TCPServerSocket> mServerSocket;
|
2013-07-29 17:36:43 +00:00
|
|
|
bool mIPCOpen;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2015-03-25 14:36:56 +00:00
|
|
|
|
|
|
|
#endif // mozilla_dom_TCPServerSocketParent_h
|