From 8c6b8752f69aa527e51f00b3a8526fe03dd9e122 Mon Sep 17 00:00:00 2001 From: zecke Date: Fri, 11 Oct 2002 15:08:46 +0000 Subject: Introduce rawIO in the IOLayer This is needed because ?-modem does not like buffered IO at all and we at least double buffered it While sz_transfer is now dead we've filetransfer which is using DirectIO between IOLayer and the SZ IOSerial got adjusted to the rawIO introduction --- (limited to 'noncore/apps/opie-console/filetransfer.h') diff --git a/noncore/apps/opie-console/filetransfer.h b/noncore/apps/opie-console/filetransfer.h new file mode 100644 index 0000000..06c6d12 --- a/dev/null +++ b/noncore/apps/opie-console/filetransfer.h @@ -0,0 +1,38 @@ +#ifndef OPIE_FILE_TRANSFER_H +#define OPIE_FILE_TRANSFER_H + +#include + +#include + +#include "file_layer.h" + +class QSocketNotifier; +class OProcess; +class FileTransfer : public FileTransferLayer{ + Q_OBJECT +public: + enum Type { + SZ = 0, + SX, + SY + }; + FileTransfer( Type t, IOLayer* ); + ~FileTransfer(); + + void sendFile( const QString& file ); + void sendFile( const QFile& ); + +private slots: + void setupChild(); +private: + static pid_t m_pid; + int m_fd; + int m_info[2]; + int m_comm[2]; + Type m_type; + static void signal_handler(int); + static bool terminate; +}; + +#endif -- cgit v0.9.0.2