|
version 1.1.1.1, 2014/02/14 15:38:37
|
version 1.1.1.1.4.5, 2014/02/20 16:30:05
|
|
Line 3
|
Line 3
|
| |
|
| |
|
| #ifndef STRSIZ |
#ifndef STRSIZ |
| #define STRSIZ 256 | #define STRSIZ 256 |
| #endif |
#endif |
| |
|
| #define DEFAULT_CFGNAME "/etc/tftpd.conf" | #define DEFAULT_CFGNAME "/etc/tftpd.conf" |
| #define DEFAULT_TIMEOUT 5 | #define DEFAULT_TIMEOUT 5 |
| #define TFTP_PKT_MAX 516 | #define TFTP_PKT_MAX 516 |
| #define TFTP_LOAD_MAX 512 | #define TFTP_LOAD_MAX 512 |
| |
|
| |
#define TFTP_OPT_TSIZE "tsize" |
| |
#define TFTP_OPT_BLKSIZE "blksize" |
| |
#define TFTP_OPT_BLKSIZE2 "blksize2" |
| |
#define TFTP_OPT_TIMEOUT "timeout" |
| |
#define TFTP_OPT_ROLLOVER "rollover" |
| |
|
| |
|
| struct tagCli { |
struct tagCli { |
| int opc; |
int opc; |
| u_short seq; |
u_short seq; |
| |
struct timespec tout; |
| |
int roll; |
| int siz; |
int siz; |
| |
off_t tsiz; |
| sockaddr_t addr; |
sockaddr_t addr; |
| int fd; |
int fd; |
| char file[PATH_MAX]; |
char file[PATH_MAX]; |
| char mode[10]; |
char mode[10]; |
| short close; |
short close; |
| |
int tmp; |
| }; |
}; |
| |
|
| |
|