|
|
| version 1.1.1.1.4.2, 2014/02/20 00:44:49 | version 1.4, 2014/02/20 23:17:22 |
|---|---|
| Line 13 | Line 13 |
| #define TFTP_OPT_TSIZE "tsize" | #define TFTP_OPT_TSIZE "tsize" |
| #define TFTP_OPT_BLKSIZE "blksize" | #define TFTP_OPT_BLKSIZE "blksize" |
| #define TFTP_OPT_BLKSIZE2 "blksize2" | |
| #define TFTP_OPT_TIMEOUT "timeout" | #define TFTP_OPT_TIMEOUT "timeout" |
| #define TFTP_OPT_ROLLOVER "rollover" | |
| struct tagCli { | struct tagCli { |
| int opc; | int opc; |
| u_short seq; | u_short seq; |
| int tout; | struct timespec tout; |
| u_short roll; | |
| int siz; | int siz; |
| off_t tsiz; | off_t tsiz; |
| sockaddr_t addr; | sockaddr_t addr; |
| Line 27 struct tagCli { | Line 30 struct tagCli { |
| char file[PATH_MAX]; | char file[PATH_MAX]; |
| char mode[10]; | char mode[10]; |
| short close; | short close; |
| int tmp; | |
| }; | }; |