├── .gitignore ├── LICENSE ├── MakeSname ├── README.md └── src ├── COPYING.LESSER ├── Makefile ├── NetLogger.c ├── NetLogger.h ├── NetLogger.i ├── bbcp.C ├── bbcp_A32.h ├── bbcp_A32_zlib.h ├── bbcp_Args.C ├── bbcp_Args.h ├── bbcp_BuffPool.C ├── bbcp_BuffPool.h ├── bbcp_C32.C ├── bbcp_C32.h ├── bbcp_ChkSum.C ├── bbcp_ChkSum.h ├── bbcp_Config.C ├── bbcp_Config.h ├── bbcp_Debug.h ├── bbcp_Emsg.C ├── bbcp_Emsg.h ├── bbcp_Endian.h ├── bbcp_FS_Null.C ├── bbcp_FS_Null.h ├── bbcp_FS_Pipe.C ├── bbcp_FS_Pipe.h ├── bbcp_FS_Unix.C ├── bbcp_FS_Unix.h ├── bbcp_File.C ├── bbcp_File.h ├── bbcp_FileSpec.C ├── bbcp_FileSpec.h ├── bbcp_FileSystem.C ├── bbcp_FileSystem.h ├── bbcp_Headers.h ├── bbcp_IO.C ├── bbcp_IO.h ├── bbcp_IO_Null.C ├── bbcp_IO_Null.h ├── bbcp_IO_Pipe.C ├── bbcp_IO_Pipe.h ├── bbcp_Link.C ├── bbcp_Link.h ├── bbcp_LogFile.C ├── bbcp_LogFile.h ├── bbcp_MD5.C ├── bbcp_MD5.h ├── bbcp_MD5_openssl.C ├── bbcp_MD5_openssl.h ├── bbcp_NetAddr.C ├── bbcp_NetAddr.h ├── bbcp_NetAddrInfo.C ├── bbcp_NetAddrInfo.h ├── bbcp_NetLogger.C ├── bbcp_NetLogger.h ├── bbcp_NetSockAddr.h ├── bbcp_Network.C ├── bbcp_Network.h ├── bbcp_Node.C ├── bbcp_Node.h ├── bbcp_Platform.h ├── bbcp_ProcMon.C ├── bbcp_ProcMon.h ├── bbcp_ProgMon.C ├── bbcp_ProgMon.h ├── bbcp_Protocol.C ├── bbcp_Protocol.h ├── bbcp_Pthread.C ├── bbcp_Pthread.h ├── bbcp_RTCopy.C ├── bbcp_RTCopy.h ├── bbcp_Stream.C ├── bbcp_Stream.h ├── bbcp_System.C ├── bbcp_System.h ├── bbcp_Timer.C ├── bbcp_Timer.h ├── bbcp_Version.C ├── bbcp_Version.h ├── bbcp_ZCX.C └── bbcp_ZCX.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | bin/ 3 | obj/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/LICENSE -------------------------------------------------------------------------------- /MakeSname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/MakeSname -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/README.md -------------------------------------------------------------------------------- /src/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/COPYING.LESSER -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/NetLogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/NetLogger.c -------------------------------------------------------------------------------- /src/NetLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/NetLogger.h -------------------------------------------------------------------------------- /src/NetLogger.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/NetLogger.i -------------------------------------------------------------------------------- /src/bbcp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp.C -------------------------------------------------------------------------------- /src/bbcp_A32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_A32.h -------------------------------------------------------------------------------- /src/bbcp_A32_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_A32_zlib.h -------------------------------------------------------------------------------- /src/bbcp_Args.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Args.C -------------------------------------------------------------------------------- /src/bbcp_Args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Args.h -------------------------------------------------------------------------------- /src/bbcp_BuffPool.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_BuffPool.C -------------------------------------------------------------------------------- /src/bbcp_BuffPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_BuffPool.h -------------------------------------------------------------------------------- /src/bbcp_C32.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_C32.C -------------------------------------------------------------------------------- /src/bbcp_C32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_C32.h -------------------------------------------------------------------------------- /src/bbcp_ChkSum.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_ChkSum.C -------------------------------------------------------------------------------- /src/bbcp_ChkSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_ChkSum.h -------------------------------------------------------------------------------- /src/bbcp_Config.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Config.C -------------------------------------------------------------------------------- /src/bbcp_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Config.h -------------------------------------------------------------------------------- /src/bbcp_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Debug.h -------------------------------------------------------------------------------- /src/bbcp_Emsg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Emsg.C -------------------------------------------------------------------------------- /src/bbcp_Emsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Emsg.h -------------------------------------------------------------------------------- /src/bbcp_Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Endian.h -------------------------------------------------------------------------------- /src/bbcp_FS_Null.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FS_Null.C -------------------------------------------------------------------------------- /src/bbcp_FS_Null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FS_Null.h -------------------------------------------------------------------------------- /src/bbcp_FS_Pipe.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FS_Pipe.C -------------------------------------------------------------------------------- /src/bbcp_FS_Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FS_Pipe.h -------------------------------------------------------------------------------- /src/bbcp_FS_Unix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FS_Unix.C -------------------------------------------------------------------------------- /src/bbcp_FS_Unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FS_Unix.h -------------------------------------------------------------------------------- /src/bbcp_File.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_File.C -------------------------------------------------------------------------------- /src/bbcp_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_File.h -------------------------------------------------------------------------------- /src/bbcp_FileSpec.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FileSpec.C -------------------------------------------------------------------------------- /src/bbcp_FileSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FileSpec.h -------------------------------------------------------------------------------- /src/bbcp_FileSystem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FileSystem.C -------------------------------------------------------------------------------- /src/bbcp_FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_FileSystem.h -------------------------------------------------------------------------------- /src/bbcp_Headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Headers.h -------------------------------------------------------------------------------- /src/bbcp_IO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_IO.C -------------------------------------------------------------------------------- /src/bbcp_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_IO.h -------------------------------------------------------------------------------- /src/bbcp_IO_Null.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_IO_Null.C -------------------------------------------------------------------------------- /src/bbcp_IO_Null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_IO_Null.h -------------------------------------------------------------------------------- /src/bbcp_IO_Pipe.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_IO_Pipe.C -------------------------------------------------------------------------------- /src/bbcp_IO_Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_IO_Pipe.h -------------------------------------------------------------------------------- /src/bbcp_Link.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Link.C -------------------------------------------------------------------------------- /src/bbcp_Link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Link.h -------------------------------------------------------------------------------- /src/bbcp_LogFile.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_LogFile.C -------------------------------------------------------------------------------- /src/bbcp_LogFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_LogFile.h -------------------------------------------------------------------------------- /src/bbcp_MD5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_MD5.C -------------------------------------------------------------------------------- /src/bbcp_MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_MD5.h -------------------------------------------------------------------------------- /src/bbcp_MD5_openssl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_MD5_openssl.C -------------------------------------------------------------------------------- /src/bbcp_MD5_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_MD5_openssl.h -------------------------------------------------------------------------------- /src/bbcp_NetAddr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_NetAddr.C -------------------------------------------------------------------------------- /src/bbcp_NetAddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_NetAddr.h -------------------------------------------------------------------------------- /src/bbcp_NetAddrInfo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_NetAddrInfo.C -------------------------------------------------------------------------------- /src/bbcp_NetAddrInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_NetAddrInfo.h -------------------------------------------------------------------------------- /src/bbcp_NetLogger.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_NetLogger.C -------------------------------------------------------------------------------- /src/bbcp_NetLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_NetLogger.h -------------------------------------------------------------------------------- /src/bbcp_NetSockAddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_NetSockAddr.h -------------------------------------------------------------------------------- /src/bbcp_Network.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Network.C -------------------------------------------------------------------------------- /src/bbcp_Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Network.h -------------------------------------------------------------------------------- /src/bbcp_Node.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Node.C -------------------------------------------------------------------------------- /src/bbcp_Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Node.h -------------------------------------------------------------------------------- /src/bbcp_Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Platform.h -------------------------------------------------------------------------------- /src/bbcp_ProcMon.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_ProcMon.C -------------------------------------------------------------------------------- /src/bbcp_ProcMon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_ProcMon.h -------------------------------------------------------------------------------- /src/bbcp_ProgMon.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_ProgMon.C -------------------------------------------------------------------------------- /src/bbcp_ProgMon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_ProgMon.h -------------------------------------------------------------------------------- /src/bbcp_Protocol.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Protocol.C -------------------------------------------------------------------------------- /src/bbcp_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Protocol.h -------------------------------------------------------------------------------- /src/bbcp_Pthread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Pthread.C -------------------------------------------------------------------------------- /src/bbcp_Pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Pthread.h -------------------------------------------------------------------------------- /src/bbcp_RTCopy.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_RTCopy.C -------------------------------------------------------------------------------- /src/bbcp_RTCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_RTCopy.h -------------------------------------------------------------------------------- /src/bbcp_Stream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Stream.C -------------------------------------------------------------------------------- /src/bbcp_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Stream.h -------------------------------------------------------------------------------- /src/bbcp_System.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_System.C -------------------------------------------------------------------------------- /src/bbcp_System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_System.h -------------------------------------------------------------------------------- /src/bbcp_Timer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Timer.C -------------------------------------------------------------------------------- /src/bbcp_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Timer.h -------------------------------------------------------------------------------- /src/bbcp_Version.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Version.C -------------------------------------------------------------------------------- /src/bbcp_Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_Version.h -------------------------------------------------------------------------------- /src/bbcp_ZCX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_ZCX.C -------------------------------------------------------------------------------- /src/bbcp_ZCX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeertekin/bbcp/HEAD/src/bbcp_ZCX.h --------------------------------------------------------------------------------