#include #include "microudp.h" #include "tftp.h" #define PORT_OUT 69 #define PORT_IN 7642 static int format_request(char *buf, const char *filename) { *buf++ = 0x00; /* Opcode: Request */ *buf++ = 0x01; strcpy(buf, filename); buf += strlen(filename); *buf++ = 0x00; *buf++ = 'o'; *buf++ = 'c'; *buf++ = 't'; *buf++ = 'e'; *buf++ = 't'; *buf++ = 0x00; return 9+strlen(filename); } static int format_ack(char *buf, unsigned short block) { *buf++ = 0x00; /* Opcode: Ack */ *buf++ = 0x04; *buf++ = (block & 0xff00) >> 8; *buf++ = (block & 0x00ff); return 4; } static char *packet_data; static int total_length; static int transfer_finished; static char *dst_buffer; static void rx_callback(unsigned int src_ip, unsigned short src_port, unsigned short dst_port, void *_data, unsigned int length) { unsigned char *data = (unsigned char *)_data; unsigned short opcode; unsigned short block; int i; int offset; if(length < 4) return; if(dst_port != PORT_IN) return; opcode = ((unsigned short)(data[0]) << 8)|((unsigned short)(data[1])); block = ((unsigned short)(data[2]) << 8)|((unsigned short)(data[3])); if(block < 1) return; if(opcode == 3) { /* Data */ length -= 4; offset = (block-1)*512; for(i=0;i 0) || transfer_finished) break; } if((total_length > 0) || transfer_finished) break; tries--; if(tries == 0) { microudp_set_callback(NULL); return -1; } } length_before = total_length; while(!transfer_finished) { if(length_before != total_length) { i = 12000000; length_before = total_length; } if(i-- == 0) { microudp_set_callback(NULL); return -1; } microudp_service(); } microudp_set_callback(NULL); return total_length; }