/*************************************************************************************** File: tftps.h Date: 7.10.2002 Version: 0.1 Author: Jari Lahti (jari@violasystems.com Description: Funnction API prototypes and constants of TFTPS server Version Info: 7.10.2002 - First version (Jari Lahti) ***************************************************************************************/ #ifndef __INCLUDE_OPENTCP_TFTPS_H__ #define __INCLUDE_OPENTCP_TFTPS_H__ #include "datatypes.h" /* User defined */ #define TFTPS_SERVERPORT 69 #define TFTPS_FILENAME_MAXLEN 20 #define TFTPS_DEF_RETRIES 4 #define TFTPS_TIMEOUT 20 /* Secs */ /* Prototypes */ INT8 init_tftps(void); void tftps_run(void); INT32 tftps_eventlistener(INT8, UINT8, UINT32, UINT16, UINT16, UINT16); void TFTP_SendAck(void); void TFTP_SendError(UINT8); void TFTP_DeleteSocket(void); #endif /* EOF */