Backed out 2 changesets (bug 1881078, bug 1879806) for causing dt failures @ devtools...
[gecko.git] / netwerk / base / nsNetAddr.h
blob49d43ccaee0b9351c18d088dfd6c3fa91f8e080d
1 /* vim: et ts=2 sw=2 tw=80
2 */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsNetAddr_h__
8 #define nsNetAddr_h__
10 #include "nsINetAddr.h"
11 #include "mozilla/net/DNS.h"
12 #include "mozilla/Attributes.h"
14 class nsNetAddr final : public nsINetAddr {
15 ~nsNetAddr() = default;
17 public:
18 NS_DECL_ISUPPORTS
19 NS_DECL_NSINETADDR
21 explicit nsNetAddr(const mozilla::net::NetAddr* addr) : mAddr(*addr) {}
23 private:
24 mozilla::net::NetAddr mAddr;
26 protected:
27 /* additional members */
30 #endif // !nsNetAddr_h__