gecko-dev/netwerk/socket/base/nsISocketProvider.idl

46 строки
1.6 KiB
Plaintext

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
#include "nsISupports.idl"
%{C++
#include "prio.h"
%}
[ptr] native nsFileDescStar(PRFileDesc);
[noscript, uuid(0906de00-5414-11d3-bbc8-0000861d1237)]
interface nsISocketProvider : nsISupports {
void NewSocket ( in string hostName, out nsFileDescStar fileDesc, out nsISupports securityInfo );
};
%{C++
#define NS_NETWORK_SOCKET_PROGID "component://netscape/network/socket"
#define NS_NETWORK_SOCKET_PROGID_PREFIX NS_NETWORK_SOCKET_PROGID "?type="
#define NS_NETWORK_SOCKET_PROGID_PREFIX_LENGTH 41 // strlen(NS_NETWORK_SOCKET_PROGID_PREFIX)
#define NS_ERROR_UNKNOWN_SOCKET_TYPE NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 51)
#define NS_ERROR_SOCKET_CREATE_FAILED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 52)
%}