⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftptype.c

📁 linux下ftp的库源码
💻 C
字号:
static char rcsid[] = "$Id: FtpType.c,v 5.0 1995/12/10 10:28:38 orel Exp $";/*	$Log: FtpType.c,v $ * Revision 5.0  1995/12/10  10:28:38  orel * LIBFTP Version 5.0 (Distributed revision) * * Revision 4.1  1995/12/02  11:23:07  orel * *** empty log message *** * * Revision 4.0  1995/07/11  07:00:26  orel * Libftp Version 4.0 * * Revision 4.0  1995/07/11  07:00:26  orel * Libftp Version 4.0 * * Revision 3.0  1995/03/20  05:26:07  orel * *** empty log message *** * * Revision 3.0  1995/03/20  05:26:07  orel * *** empty log message *** * * Revision 2.4  1995/03/20  05:18:13  orel * *** empty log message *** * * Revision 2.3  1995/02/26  16:46:50  orel * *** empty log message *** * * Revision 2.3  1995/02/26  16:46:50  orel * *** empty log message *** * * Revision 2.2  1995/02/18  15:42:53  orel * modify for recurive mget * * Revision 2.2  1995/02/18  15:42:53  orel * modify for recurive mget * * Revision 2.1  1995/02/04  09:02:53  orel * add rcsid * * Revision 2.1  1995/02/04  09:02:53  orel * add rcsid **//*		      Library for ftpd clients.(libftp)			Copyright by Oleg Orel			 All rights reserved.			This  library is desined  for  free,  non-commercial  software  creation. It is changeable and can be improved. The author would greatly appreciate any  advises, new  components  and  patches  of  the  existing  programs.Commercial  usage is  also  possible  with  participation of it's author.*/#include "FtpLibrary.h"STATUS FtpType(FTP *ftp, char type){  STATUS p;    if ((p=FtpCommand(ftp,"TYPE %c",type,200,EOF))>0)    ftp->mode=(int)type;  return p;}  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -