2000-07-01 10:25:25 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2000-06-16 17:53:22 +00:00
|
|
|
*
|
2012-05-21 11:12:37 +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/. */
|
2000-06-16 17:53:22 +00:00
|
|
|
|
2004-06-11 15:31:21 +00:00
|
|
|
#include "nsISupports.idl"
|
2000-06-16 17:53:22 +00:00
|
|
|
|
2012-12-23 21:08:43 +00:00
|
|
|
%{ C++
|
|
|
|
#include "mozilla/net/DNS.h"
|
|
|
|
%}
|
|
|
|
[ptr] native NetAddrPtr(mozilla::net::NetAddr);
|
2000-06-16 17:53:22 +00:00
|
|
|
|
2012-12-23 21:08:43 +00:00
|
|
|
[scriptable, uuid(D5C0D1F9-22D7-47DC-BF91-D9AC6E1251A6)]
|
2004-06-11 15:31:21 +00:00
|
|
|
interface nsISOCKSSocketInfo : nsISupports
|
|
|
|
{
|
2012-12-23 21:08:43 +00:00
|
|
|
[noscript] attribute NetAddrPtr destinationAddr;
|
|
|
|
[noscript] attribute NetAddrPtr externalProxyAddr;
|
|
|
|
[noscript] attribute NetAddrPtr internalProxyAddr;
|
2000-06-16 17:53:22 +00:00
|
|
|
};
|