/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * * 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 the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the NPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the NPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #ifndef __netCore_h__ #define __netCore_h__ #include "nsError.h" /* networking error codes */ // NET RANGE: 1 -20 // FTP RANGE: 21-30 // HTTP RANGE: 31-40 // DNS RANGE: 41-50 // SOCKET RANGE 51-60 // CACHE RANGE: 61-70 // XXX Why can't we put all Netwerk error codes in one file to help avoid collisions? // Generic status codes for OnStopRequest: #define NS_BINDING_SUCCEEDED NS_OK #define NS_BINDING_FAILED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 1) #define NS_BINDING_ABORTED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 2) // The binding has been moved to another request in the same load group: #define NS_BINDING_REDIRECTED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 3) // The binding has been moved to another request in a different load group: #define NS_BINDING_RETARGETED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 4) #define NS_ERROR_MALFORMED_URI \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 10) #define NS_ERROR_ALREADY_CONNECTED \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 11) #define NS_ERROR_NOT_CONNECTED \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 12) /* see nsISocketTransportService.idl for other errors */ #define NS_ERROR_IN_PROGRESS \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 15) #define NS_ERROR_OFFLINE \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 16) // Unknown Protocol Error #define NS_ERROR_UNKNOWN_PROTOCOL \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 18) // There is no content available (when nsIChannel::asyncOpen is called) #define NS_ERROR_NO_CONTENT \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 17) #define NS_ERROR_PORT_ACCESS_NOT_ALLOWED \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 19) /* 20 - 24 defined in ftpCore.h */ #define NS_ERROR_NOT_RESUMABLE \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 25) #define NS_ERROR_REDIRECT_LOOP \ NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 31) #undef NS_NET #ifdef _IMPL_NS_NET #if defined(XP_PC) && !defined(XP_OS2) #define NS_NET _declspec(dllexport) #else /* !XP_PC */ #define NS_NET #endif /* !XP_PC */ #else /* !_IMPL_NS_NET */ #if defined(XP_PC) && !defined(XP_OS2) #define NS_NET _declspec(dllimport) #else /* !XP_PC */ #define NS_NET #endif /* !XP_PC */ #endif /* !_IMPL_NS_NET */ // Where most necko status messages come from: #define NECKO_MSGS_URL "chrome://necko/locale/necko.properties" #endif // __netCore_h__