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