#ifndef __DEFS_H #define __DEFS_H #ifndef STRSIZ #define STRSIZ 256 #endif #define DEFAULT_CFGNAME "/etc/tftpd.conf" #define DEFAULT_TIMEOUT 5 #define TFTP_PKT_MAX 516 #define TFTP_LOAD_MAX 512 struct tagCli { int opc; u_short seq; int siz; sockaddr_t addr; int fd; char file[PATH_MAX]; char mode[10]; short close; short opts; }; extern struct timespec timeout; extern struct tagCli cli; extern cfg_root_t cfg; #endif