Update of /cvsroot/kbear/kbear/kbear/ftp
In directory sc8-pr-cvs1:/tmp/cvs-serv3631/kbear/ftp
Modified Files:
kbearftp.cpp kbearftp.h
Log Message:
See Changelog
Index: kbearftp.cpp
===================================================================
RCS file: /cvsroot/kbear/kbear/kbear/ftp/kbearftp.cpp,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -d -r1.50 -r1.51
*** kbearftp.cpp 2 Jul 2003 21:11:13 -0000 1.50
--- kbearftp.cpp 23 Aug 2003 07:47:51 -0000 1.51
***************
*** 2627,2630 ****
--- 2627,2638 ----
}
+ /*
+ KBear specific
+ */
+ void KBearFtp::special( const QByteArray& data ) {
+ if( ! data.isEmpty() )
+ ftpSendCmd( QCString( data ) );
+ }
+
/** Use the SIZE command to get the file size.
Warning : the size depends on the transfer mode, hence the second arg. */
Index: kbearftp.h
===================================================================
RCS file: /cvsroot/kbear/kbear/kbear/ftp/kbearftp.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** kbearftp.h 23 Jun 2003 02:02:25 -0000 1.12
--- kbearftp.h 23 Aug 2003 07:47:51 -0000 1.13
***************
*** 71,74 ****
--- 71,75 ----
virtual void get( const KURL& url );
virtual void put( const KURL& url, int permissions, bool overwrite, bool resume);
+ virtual void special( const QByteArray& );
//virtual void mimetype( const KURL& url );
|