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-14 13:00:19 +00:00
|
|
|
[ptr] native PRNetAddrPtr(union PRNetAddr);
|
2000-06-16 17:53:22 +00:00
|
|
|
|
2012-12-14 13:00:19 +00:00
|
|
|
[scriptable, uuid(8f755c44-1dd2-11b2-a613-91117453fa95)]
|
2004-06-11 15:31:21 +00:00
|
|
|
interface nsISOCKSSocketInfo : nsISupports
|
|
|
|
{
|
2012-12-14 13:00:19 +00:00
|
|
|
[noscript] attribute PRNetAddrPtr destinationAddr;
|
|
|
|
[noscript] attribute PRNetAddrPtr externalProxyAddr;
|
|
|
|
[noscript] attribute PRNetAddrPtr internalProxyAddr;
|
2000-06-16 17:53:22 +00:00
|
|
|
};
|