2015-05-03 22:32:37 +03: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 21:36:43 +04: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 17:36:56 +03:00
|
|
|
#ifndef mozilla_dom_TCPServerSocketParent_h
|
|
|
|
#define mozilla_dom_TCPServerSocketParent_h
|
|
|
|
|
2013-07-29 21:36:43 +04:00
|
|
|
#include "mozilla/net/PNeckoParent.h"
|
|
|
|
#include "mozilla/net/PTCPServerSocketParent.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-25 17:36:56 +03:00
|
|
|
class TCPServerSocket;
|
|
|
|
class TCPServerSocketEvent;
|
|
|
|
class TCPSocketParent;
|
|
|
|
|
2013-07-29 21:36:43 +04:00
|
|
|
class TCPServerSocketParent : public mozilla::net::PTCPServerSocketParent,
|
2015-03-25 17:36:56 +03:00
|
|
|
public nsISupports {
|
2013-07-29 21:36:43 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(TCPServerSocketParent)
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
|
2015-03-25 17:36:56 +03:00
|
|
|
TCPServerSocketParent(PNeckoParent* neckoParent, uint16_t aLocalPort,
|
|
|
|
uint16_t aBacklog, bool aUseArrayBuffers);
|
2013-07-29 21:36:43 +04:00
|
|
|
|
2015-03-25 17:36:56 +03:00
|
|
|
void Init();
|
2013-07-29 21:36:43 +04:00
|
|
|
|
2019-02-06 18:58:43 +03:00
|
|
|
mozilla::ipc::IPCResult RecvClose();
|
|
|
|
mozilla::ipc::IPCResult RecvRequestDelete();
|
2013-07-29 21:36:43 +04:00
|
|
|
|
|
|
|
void AddIPDLReference();
|
|
|
|
void ReleaseIPDLReference();
|
|
|
|
|
2015-03-25 17:36:56 +03:00
|
|
|
void OnConnect(TCPServerSocketEvent* event);
|
|
|
|
|
2013-07-29 21:36:43 +04:00
|
|
|
private:
|
2015-03-25 17:36:56 +03:00
|
|
|
~TCPServerSocketParent();
|
|
|
|
|
|
|
|
nsresult SendCallbackAccept(TCPSocketParent* socket);
|
2014-06-23 23:56:07 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override;
|
2013-07-29 21:36:43 +04:00
|
|
|
|
|
|
|
PNeckoParent* mNeckoParent;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<TCPServerSocket> mServerSocket;
|
2013-07-29 21:36:43 +04:00
|
|
|
bool mIPCOpen;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2015-03-25 17:36:56 +03:00
|
|
|
|
|
|
|
#endif // mozilla_dom_TCPServerSocketParent_h
|