1999-04-28 22:45:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* 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/
|
1999-04-28 22:45:57 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* 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.
|
1999-04-28 22:45:57 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-04-28 22:45:57 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:40:37 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-04-28 22:45:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ftpCore_h___
|
|
|
|
#define __ftpCore_h___
|
|
|
|
|
|
|
|
#include "nsError.h"
|
|
|
|
|
|
|
|
//////////////////////////////
|
1999-05-09 19:25:59 +00:00
|
|
|
//// FTP CODES RANGE: 20-30
|
1999-04-28 22:45:57 +00:00
|
|
|
//////////////////////////////
|
|
|
|
#define NS_ERROR_FTP_LOGIN \
|
1999-05-09 19:25:59 +00:00
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 21)
|
1999-04-28 22:45:57 +00:00
|
|
|
|
|
|
|
#define NS_ERROR_FTP_MODE \
|
1999-05-09 19:25:59 +00:00
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 22)
|
1999-04-28 22:45:57 +00:00
|
|
|
|
|
|
|
#define NS_ERROR_FTP_CWD \
|
1999-05-09 19:25:59 +00:00
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 23)
|
1999-04-28 22:45:57 +00:00
|
|
|
|
|
|
|
#define NS_ERROR_FTP_PASV \
|
1999-05-09 19:25:59 +00:00
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 24)
|
1999-04-28 22:45:57 +00:00
|
|
|
|
|
|
|
#define NS_ERROR_FTP_DEL_DIR \
|
1999-05-09 19:25:59 +00:00
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 25)
|
1999-04-28 22:45:57 +00:00
|
|
|
|
|
|
|
#define NS_ERROR_FTP_MKDIR \
|
1999-05-09 19:25:59 +00:00
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 26)
|
1999-04-28 22:45:57 +00:00
|
|
|
|
2001-01-10 23:45:04 +00:00
|
|
|
/**
|
|
|
|
* Status nsresult codes: used with nsINotification objects
|
|
|
|
*/
|
|
|
|
#define NS_NET_STATUS_BEGIN_FTP_TRANSACTION \
|
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 27)
|
|
|
|
|
|
|
|
#define NS_NET_STATUS_END_FTP_TRANSACTION \
|
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 28)
|
|
|
|
|
1999-07-02 05:37:21 +00:00
|
|
|
#endif // __ftpCore_h___
|
2001-01-10 23:45:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|