2013-12-11 23:03:51 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_net_DNSRequestChild_h
|
|
|
|
#define mozilla_net_DNSRequestChild_h
|
|
|
|
|
|
|
|
#include "mozilla/net/PDNSRequestChild.h"
|
|
|
|
#include "nsICancelable.h"
|
|
|
|
#include "nsIDNSRecord.h"
|
|
|
|
#include "nsIDNSListener.h"
|
|
|
|
#include "nsIEventTarget.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
2015-03-21 21:35:18 +03:00
|
|
|
class DNSRequestChild final
|
2013-12-11 23:03:51 +04:00
|
|
|
: public PDNSRequestChild
|
|
|
|
, public nsICancelable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
NS_DECL_NSICANCELABLE
|
|
|
|
|
2018-03-07 20:22:03 +03:00
|
|
|
DNSRequestChild(const nsACString& aHost,
|
2017-02-14 07:25:35 +03:00
|
|
|
const OriginAttributes& aOriginAttributes,
|
|
|
|
const uint32_t& aFlags,
|
2018-03-07 20:22:03 +03:00
|
|
|
const nsACString& aNetworkInterface,
|
2013-12-11 23:03:51 +04:00
|
|
|
nsIDNSListener *aListener, nsIEventTarget *target);
|
|
|
|
|
|
|
|
void AddIPDLReference() {
|
|
|
|
AddRef();
|
|
|
|
}
|
2014-08-26 13:09:00 +04:00
|
|
|
void ReleaseIPDLReference();
|
2013-12-11 23:03:51 +04:00
|
|
|
|
|
|
|
// Sends IPDL request to parent
|
|
|
|
void StartRequest();
|
|
|
|
void CallOnLookupComplete();
|
|
|
|
|
2014-08-26 13:09:00 +04:00
|
|
|
protected:
|
|
|
|
friend class CancelDNSRequestEvent;
|
|
|
|
friend class ChildDNSService;
|
2014-06-24 20:36:44 +04:00
|
|
|
virtual ~DNSRequestChild() {}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
virtual mozilla::ipc::IPCResult RecvLookupCompleted(const DNSRequestResponse& reply) override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override;
|
2013-12-11 23:03:51 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDNSListener> mListener;
|
|
|
|
nsCOMPtr<nsIEventTarget> mTarget;
|
|
|
|
nsCOMPtr<nsIDNSRecord> mResultRecord;
|
|
|
|
nsresult mResultStatus;
|
|
|
|
nsCString mHost;
|
2017-02-14 07:25:35 +03:00
|
|
|
const OriginAttributes mOriginAttributes;
|
2013-12-11 23:03:51 +04:00
|
|
|
uint16_t mFlags;
|
2015-02-19 08:14:00 +03:00
|
|
|
nsCString mNetworkInterface;
|
2014-08-26 13:09:00 +04:00
|
|
|
bool mIPCOpen;
|
2013-12-11 23:03:51 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
2015-07-13 18:25:42 +03:00
|
|
|
|
2013-12-11 23:03:51 +04:00
|
|
|
#endif // mozilla_net_DNSRequestChild_h
|