📄 ftpparse.h
字号:
/****************************************************************************** libprozilla - a download accelerator library Copyright (C) 2001 Kalum Somaratna This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA******************************************************************************//* FTP LIST command parsing code. *//* $Id: ftpparse.h,v 1.11 2001/06/16 22:58:01 kalum Exp $ */#ifndef FTPPARSE_H#define FTPPARSE_H#include "common.h"#ifdef __cplusplusextern "C" {#endif#define FTPPARSEFAIL -1#define FTPPARSENOTEXIST -2 int size_returner(char *buf, int len); boolean is_eplf(char *buf, int len); int eplf_extract_size(char *buf, int len); boolean is_multinet(char *buf, int len); int multinet_extract_size(char *buf, int len); boolean is_binls(char *buf, int len); int binls_extract_size(char *buf, int len);#ifdef __cplusplus}#endif#endif /* FTPPARSE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -