blob: 8f2675e07704023ea6110f9105b31275030f93a4 [file] [log] [blame]
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08001/* tftp defines */
2
3#define TFTP_SESSIONS_MAX 3
4
5#define TFTP_SERVER 69
6
7#define TFTP_RRQ 1
8#define TFTP_WRQ 2
9#define TFTP_DATA 3
10#define TFTP_ACK 4
11#define TFTP_ERROR 5
12#define TFTP_OACK 6
13
14#define TFTP_FILENAME_MAX 512
15
16struct tftp_t {
17 struct ip ip;
18 struct udphdr udp;
19 u_int16_t tp_op;
20 union {
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070021 struct {
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080022 u_int16_t tp_block_nr;
23 u_int8_t tp_buf[512];
24 } tp_data;
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070025 struct {
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080026 u_int16_t tp_error_code;
27 u_int8_t tp_msg[512];
28 } tp_error;
29 u_int8_t tp_buf[512 + 2];
30 } x;
31};
32
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -070033void tftp_input(struct mbuf *m);