2 * Copyright 1994, 1995, 2000 Neil Russell.
4 * Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de
5 * Copyright 2011 Comelit Group SpA,
6 * Luca Ceresoli <luca.ceresoli@comelit.it>
15 /* Well known TFTP port # */
16 #define WELL_KNOWN_PORT 69
17 /* Millisecs to timeout for lost pkt */
18 #define TIMEOUT 5000UL
19 #ifndef CONFIG_NET_RETRY_COUNT
20 /* # of timeouts before giving up */
21 # define TIMEOUT_COUNT 10
23 # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT * 2)
25 /* Number of "loading" hashes per line (for checking the image size) */
26 #define HASHES_PER_LINE 65
38 static ulong TftpTimeoutMSecs = TIMEOUT;
39 static int TftpTimeoutCountMax = TIMEOUT_COUNT;
42 * These globals govern the timeout behavior when attempting a connection to a
43 * TFTP server. TftpRRQTimeoutMSecs specifies the number of milliseconds to
44 * wait for the server to respond to initial connection. Second global,
45 * TftpRRQTimeoutCountMax, gives the number of such connection retries.
46 * TftpRRQTimeoutCountMax must be non-negative and TftpRRQTimeoutMSecs must be
47 * positive. The globals are meant to be set (and restored) by code needing
48 * non-standard timeout behavior when initiating a TFTP transfer.
50 ulong TftpRRQTimeoutMSecs = TIMEOUT;
51 int TftpRRQTimeoutCountMax = TIMEOUT_COUNT;
54 TFTP_ERR_UNDEFINED = 0,
55 TFTP_ERR_FILE_NOT_FOUND = 1,
56 TFTP_ERR_ACCESS_DENIED = 2,
57 TFTP_ERR_DISK_FULL = 3,
58 TFTP_ERR_UNEXPECTED_OPCODE = 4,
59 TFTP_ERR_UNKNOWN_TRANSFER_ID = 5,
60 TFTP_ERR_FILE_ALREADY_EXISTS = 6,
63 static IPaddr_t TftpRemoteIP;
64 /* The UDP port at their end */
65 static int TftpRemotePort;
66 /* The UDP port at our end */
67 static int TftpOurPort;
68 static int TftpTimeoutCount;
69 /* packet sequence number */
70 static ulong TftpBlock;
71 /* last packet sequence number received */
72 static ulong TftpLastBlock;
73 /* count of sequence number wraparounds */
74 static ulong TftpBlockWrap;
75 /* memory offset due to wrapping */
76 static ulong TftpBlockWrapOffset;
78 #ifdef CONFIG_TFTP_TSIZE
79 /* The file size reported by the server */
81 /* The number of hashes we printed */
82 static short TftpNumchars;
84 #ifdef CONFIG_CMD_TFTPPUT
85 static int TftpWriting; /* 1 if writing, else 0 */
86 static int TftpFinalBlock; /* 1 if we have sent the last block */
91 #define STATE_SEND_RRQ 1
93 #define STATE_TOO_LARGE 3
94 #define STATE_BAD_MAGIC 4
96 #define STATE_RECV_WRQ 6
97 #define STATE_SEND_WRQ 7
99 /* default TFTP block size */
100 #define TFTP_BLOCK_SIZE 512
101 /* sequence number is 16 bit */
102 #define TFTP_SEQUENCE_SIZE ((ulong)(1<<16))
104 #define DEFAULT_NAME_LEN (8 + 4 + 1)
105 static char default_filename[DEFAULT_NAME_LEN];
107 #ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
110 #define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
113 static char tftp_filename[MAX_LEN];
115 #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
116 extern flash_info_t flash_info[];
119 /* 512 is poor choice for ethernet, MTU is typically 1500.
120 * Minus eth.hdrs thats 1468. Can get 2x better throughput with
121 * almost-MTU block sizes. At least try... fall back to 512 if need be.
122 * (but those using CONFIG_IP_DEFRAG may want to set a larger block in cfg file)
124 #ifdef CONFIG_TFTP_BLOCKSIZE
125 #define TFTP_MTU_BLOCKSIZE CONFIG_TFTP_BLOCKSIZE
127 #define TFTP_MTU_BLOCKSIZE 1468
130 static unsigned short TftpBlkSize = TFTP_BLOCK_SIZE;
131 static unsigned short TftpBlkSizeOption = TFTP_MTU_BLOCKSIZE;
133 #ifdef CONFIG_MCAST_TFTP
135 #define MTFTP_BITMAPSIZE 0x1000
136 static unsigned *Bitmap;
137 static int PrevBitmapHole, Mapsize = MTFTP_BITMAPSIZE;
138 static uchar ProhibitMcast, MasterClient;
139 static uchar Multicast;
140 extern IPaddr_t Mcast_addr;
141 static int Mcast_port;
142 static ulong TftpEndingBlock; /* can get 'last' block before done..*/
144 static void parse_multicast_oack(char *pkt, int len);
150 eth_mcast_join(Mcast_addr, 0);
154 Mcast_addr = Multicast = Mcast_port = 0;
155 TftpEndingBlock = -1;
158 #endif /* CONFIG_MCAST_TFTP */
160 static __inline__ void
161 store_block(unsigned block, uchar *src, unsigned len)
163 ulong offset = block * TftpBlkSize + TftpBlockWrapOffset;
164 ulong newsize = offset + len;
165 #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
168 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
169 /* start address in flash? */
170 if (flash_info[i].flash_id == FLASH_UNKNOWN)
172 if (load_addr + offset >= flash_info[i].start[0]) {
178 if (rc) { /* Flash is destination for this packet */
179 rc = flash_write((char *)src, (ulong)(load_addr+offset), len);
182 NetState = NETLOOP_FAIL;
187 #endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
189 (void)memcpy((void *)(load_addr + offset), src, len);
191 #ifdef CONFIG_MCAST_TFTP
193 ext2_set_bit(block, Bitmap);
196 if (NetBootFileXferSize < newsize)
197 NetBootFileXferSize = newsize;
200 /* Clear our state ready for a new transfer */
201 static void new_transfer(void)
205 TftpBlockWrapOffset = 0;
206 #ifdef CONFIG_CMD_TFTPPUT
211 #ifdef CONFIG_CMD_TFTPPUT
213 * Load the next block from memory to be sent over tftp.
215 * @param block Block number to send
216 * @param dst Destination buffer for data
217 * @param len Number of bytes in block (this one and every other)
218 * @return number of bytes loaded
220 static int load_block(unsigned block, uchar *dst, unsigned len)
222 /* We may want to get the final block from the previous set */
223 ulong offset = ((int)block - 1) * len + TftpBlockWrapOffset;
226 tosend = min(NetBootFileXferSize - offset, tosend);
227 (void)memcpy(dst, (void *)(save_addr + offset), tosend);
228 debug("%s: block=%d, offset=%ld, len=%d, tosend=%ld\n", __func__,
229 block, offset, len, tosend);
234 static void TftpSend(void);
235 static void TftpTimeout(void);
237 /**********************************************************************/
239 static void show_block_marker(void)
241 #ifdef CONFIG_TFTP_TSIZE
243 ulong pos = TftpBlock * TftpBlkSize + TftpBlockWrapOffset;
245 while (TftpNumchars < pos * 50 / TftpTsize) {
252 if (((TftpBlock - 1) % 10) == 0)
254 else if ((TftpBlock % (10 * HASHES_PER_LINE)) == 0)
260 * restart the current transfer due to an error
262 * @param msg Message to print for user
264 static void restart(const char *msg)
266 printf("\n%s; starting again\n", msg);
267 #ifdef CONFIG_MCAST_TFTP
274 * Check if the block number has wrapped, and update progress
276 * TODO: The egregious use of global variables in this file should be tidied.
278 static void update_block_number(void)
281 * RFC1350 specifies that the first data packet will
282 * have sequence number 1. If we receive a sequence
283 * number of 0 this means that there was a wrap
284 * around of the (16 bit) counter.
286 if (TftpBlock == 0) {
288 TftpBlockWrapOffset += TftpBlkSize * TFTP_SEQUENCE_SIZE;
289 TftpTimeoutCount = 0; /* we've done well, reset thhe timeout */
295 /* The TFTP get or put is complete */
296 static void tftp_complete(void)
298 #ifdef CONFIG_TFTP_TSIZE
299 /* Print hash marks for the last packet received */
300 while (TftpTsize && TftpNumchars < 49) {
306 NetState = NETLOOP_SUCCESS;
317 #ifdef CONFIG_MCAST_TFTP
318 /* Multicast TFTP.. non-MasterClients do not ACK data. */
320 && (TftpState == STATE_DATA)
321 && (MasterClient == 0))
325 * We will always be sending some sort of packet, so
326 * cobble together the packet headers now.
328 pkt = (uchar *)(NetTxPacket + NetEthHdrSize() + IP_HDR_SIZE);
335 #ifdef CONFIG_CMD_TFTPPUT
336 *s++ = htons(TftpState == STATE_SEND_RRQ ? TFTP_RRQ :
339 *s++ = htons(TFTP_RRQ);
342 strcpy((char *)pkt, tftp_filename);
343 pkt += strlen(tftp_filename) + 1;
344 strcpy((char *)pkt, "octet");
345 pkt += 5 /*strlen("octet")*/ + 1;
346 strcpy((char *)pkt, "timeout");
347 pkt += 7 /*strlen("timeout")*/ + 1;
348 sprintf((char *)pkt, "%lu", TftpTimeoutMSecs / 1000);
349 debug("send option \"timeout %s\"\n", (char *)pkt);
350 pkt += strlen((char *)pkt) + 1;
351 #ifdef CONFIG_TFTP_TSIZE
352 pkt += sprintf((char *)pkt, "tsize%c%lu%c",
353 0, NetBootFileXferSize, 0);
355 /* try for more effic. blk size */
356 pkt += sprintf((char *)pkt, "blksize%c%d%c",
357 0, TftpBlkSizeOption, 0);
358 #ifdef CONFIG_MCAST_TFTP
359 /* Check all preconditions before even trying the option */
361 && (Bitmap = malloc(Mapsize))
362 && eth_get_dev()->mcast) {
365 pkt += sprintf((char *)pkt, "multicast%c%c", 0, 0);
367 #endif /* CONFIG_MCAST_TFTP */
372 #ifdef CONFIG_MCAST_TFTP
373 /* My turn! Start at where I need blocks I missed.*/
375 TftpBlock = ext2_find_next_zero_bit(Bitmap,
384 s[0] = htons(TFTP_ACK);
385 s[1] = htons(TftpBlock);
386 pkt = (uchar *)(s + 2);
387 #ifdef CONFIG_CMD_TFTPPUT
389 int toload = TftpBlkSize;
390 int loaded = load_block(TftpBlock, pkt, toload);
392 s[0] = htons(TFTP_DATA);
394 TftpFinalBlock = (loaded < toload);
400 case STATE_TOO_LARGE:
403 *s++ = htons(TFTP_ERROR);
407 strcpy((char *)pkt, "File too large");
408 pkt += 14 /*strlen("File too large")*/ + 1;
412 case STATE_BAD_MAGIC:
415 *s++ = htons(TFTP_ERROR);
418 strcpy((char *)pkt, "File has bad magic");
419 pkt += 18 /*strlen("File has bad magic")*/ + 1;
424 NetSendUDPPacket(NetServerEther, TftpRemoteIP, TftpRemotePort,
428 #ifdef CONFIG_CMD_TFTPPUT
429 static void icmp_handler(unsigned type, unsigned code, unsigned dest,
430 IPaddr_t sip, unsigned src, uchar *pkt, unsigned len)
432 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {
433 /* Oh dear the other end has gone away */
434 restart("TFTP server died");
440 TftpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
447 if (dest != TftpOurPort) {
448 #ifdef CONFIG_MCAST_TFTP
450 && (!Mcast_port || (dest != Mcast_port)))
454 if (TftpState != STATE_SEND_RRQ && src != TftpRemotePort &&
455 TftpState != STATE_RECV_WRQ && TftpState != STATE_SEND_WRQ)
461 /* warning: don't use increment (++) in ntohs() macros!! */
465 switch (ntohs(proto)) {
471 #ifdef CONFIG_CMD_TFTPPUT
473 if (TftpFinalBlock) {
477 * Move to the next block. We want our block
478 * count to wrap just like the other end!
480 int block = ntohs(*s);
481 int ack_ok = (TftpBlock == block);
483 TftpBlock = (unsigned short)(block + 1);
484 update_block_number();
486 TftpSend(); /* Send next data block */
495 #ifdef CONFIG_CMD_TFTPSRV
499 TftpRemotePort = src;
500 TftpOurPort = 1024 + (get_timer(0) % 3072);
502 TftpSend(); /* Send ACK(0) */
507 debug("Got OACK: %s %s\n",
509 pkt + strlen((char *)pkt) + 1);
510 TftpState = STATE_OACK;
511 TftpRemotePort = src;
513 * Check for 'blksize' option.
514 * Careful: "i" is signed, "len" is unsigned, thus
515 * something like "len-8" may give a *huge* number
517 for (i = 0; i+8 < len; i++) {
518 if (strcmp((char *)pkt+i, "blksize") == 0) {
519 TftpBlkSize = (unsigned short)
520 simple_strtoul((char *)pkt+i+8, NULL,
522 debug("Blocksize ack: %s, %d\n",
523 (char *)pkt+i+8, TftpBlkSize);
525 #ifdef CONFIG_TFTP_TSIZE
526 if (strcmp((char *)pkt+i, "tsize") == 0) {
527 TftpTsize = simple_strtoul((char *)pkt+i+6,
529 debug("size = %s, %d\n",
530 (char *)pkt+i+6, TftpTsize);
534 #ifdef CONFIG_MCAST_TFTP
535 parse_multicast_oack((char *)pkt, len-1);
536 if ((Multicast) && (!MasterClient))
537 TftpState = STATE_DATA; /* passive.. */
540 #ifdef CONFIG_CMD_TFTPPUT
542 /* Get ready to send the first block */
543 TftpState = STATE_DATA;
547 TftpSend(); /* Send ACK or first data block */
553 TftpBlock = ntohs(*(ushort *)pkt);
555 update_block_number();
557 if (TftpState == STATE_SEND_RRQ)
558 debug("Server did not acknowledge timeout option!\n");
560 if (TftpState == STATE_SEND_RRQ || TftpState == STATE_OACK ||
561 TftpState == STATE_RECV_WRQ) {
562 /* first block received */
563 TftpState = STATE_DATA;
564 TftpRemotePort = src;
567 #ifdef CONFIG_MCAST_TFTP
568 if (Multicast) { /* start!=1 common if mcast */
569 TftpLastBlock = TftpBlock - 1;
572 if (TftpBlock != 1) { /* Assertion */
573 printf("\nTFTP error: "
574 "First block is not block 1 (%ld)\n"
575 "Starting again\n\n",
582 if (TftpBlock == TftpLastBlock) {
584 * Same block again; ignore it.
589 TftpLastBlock = TftpBlock;
590 TftpTimeoutCountMax = TIMEOUT_COUNT;
591 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
593 store_block(TftpBlock - 1, pkt + 2, len);
596 * Acknowledge the block just received, which will prompt
597 * the remote for the next one.
599 #ifdef CONFIG_MCAST_TFTP
600 /* if I am the MasterClient, actively calculate what my next
601 * needed block is; else I'm passive; not ACKING
604 if (len < TftpBlkSize) {
605 TftpEndingBlock = TftpBlock;
606 } else if (MasterClient) {
607 TftpBlock = PrevBitmapHole =
608 ext2_find_next_zero_bit(
612 if (TftpBlock > ((Mapsize*8) - 1)) {
613 printf("tftpfile too big\n");
614 /* try to double it and retry */
620 TftpLastBlock = TftpBlock;
626 #ifdef CONFIG_MCAST_TFTP
628 if (MasterClient && (TftpBlock >= TftpEndingBlock)) {
629 puts("\nMulticast tftp done\n");
631 NetState = NETLOOP_SUCCESS;
636 if (len < TftpBlkSize)
641 printf("\nTFTP error: '%s' (%d)\n",
642 pkt + 2, ntohs(*(ushort *)pkt));
644 switch (ntohs(*(ushort *)pkt)) {
645 case TFTP_ERR_FILE_NOT_FOUND:
646 case TFTP_ERR_ACCESS_DENIED:
647 puts("Not retrying...\n");
649 NetState = NETLOOP_FAIL;
651 case TFTP_ERR_UNDEFINED:
652 case TFTP_ERR_DISK_FULL:
653 case TFTP_ERR_UNEXPECTED_OPCODE:
654 case TFTP_ERR_UNKNOWN_TRANSFER_ID:
655 case TFTP_ERR_FILE_ALREADY_EXISTS:
657 puts("Starting again\n\n");
658 #ifdef CONFIG_MCAST_TFTP
672 if (++TftpTimeoutCount > TftpTimeoutCountMax) {
673 restart("Retry count exceeded");
676 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
677 if (TftpState != STATE_RECV_WRQ)
683 void TftpStart(enum proto_t protocol)
685 char *ep; /* Environment pointer */
688 * Allow the user to choose TFTP blocksize and timeout.
689 * TFTP protocol has a minimal timeout of 1 second.
691 ep = getenv("tftpblocksize");
693 TftpBlkSizeOption = simple_strtol(ep, NULL, 10);
695 ep = getenv("tftptimeout");
697 TftpTimeoutMSecs = simple_strtol(ep, NULL, 10);
699 if (TftpTimeoutMSecs < 1000) {
700 printf("TFTP timeout (%ld ms) too low, "
701 "set minimum = 1000 ms\n",
703 TftpTimeoutMSecs = 1000;
706 debug("TFTP blocksize = %i, timeout = %ld ms\n",
707 TftpBlkSizeOption, TftpTimeoutMSecs);
709 TftpRemoteIP = NetServerIP;
710 if (BootFile[0] == '\0') {
711 sprintf(default_filename, "%02X%02X%02X%02X.img",
713 (NetOurIP >> 8) & 0xFF,
714 (NetOurIP >> 16) & 0xFF,
715 (NetOurIP >> 24) & 0xFF);
717 strncpy(tftp_filename, default_filename, MAX_LEN);
718 tftp_filename[MAX_LEN-1] = 0;
720 printf("*** Warning: no boot file name; using '%s'\n",
723 char *p = strchr(BootFile, ':');
726 strncpy(tftp_filename, BootFile, MAX_LEN);
727 tftp_filename[MAX_LEN-1] = 0;
729 TftpRemoteIP = string_to_ip(BootFile);
730 strncpy(tftp_filename, p + 1, MAX_LEN);
731 tftp_filename[MAX_LEN-1] = 0;
735 printf("Using %s device\n", eth_get_name());
736 printf("TFTP %s server %pI4; our IP address is %pI4",
737 #ifdef CONFIG_CMD_TFTPPUT
738 protocol == TFTPPUT ? "to" : "from",
742 &TftpRemoteIP, &NetOurIP);
744 /* Check if we need to send across this subnet */
745 if (NetOurGatewayIP && NetOurSubnetMask) {
746 IPaddr_t OurNet = NetOurIP & NetOurSubnetMask;
747 IPaddr_t RemoteNet = TftpRemoteIP & NetOurSubnetMask;
749 if (OurNet != RemoteNet)
750 printf("; sending through gateway %pI4",
755 printf("Filename '%s'.", tftp_filename);
757 if (NetBootFileSize) {
758 printf(" Size is 0x%x Bytes = ", NetBootFileSize<<9);
759 print_size(NetBootFileSize<<9, "");
763 #ifdef CONFIG_CMD_TFTPPUT
764 TftpWriting = (protocol == TFTPPUT);
766 printf("Save address: 0x%lx\n", save_addr);
767 printf("Save size: 0x%lx\n", save_size);
768 NetBootFileXferSize = save_size;
770 TftpState = STATE_SEND_WRQ;
775 printf("Load address: 0x%lx\n", load_addr);
776 puts("Loading: *\b");
777 TftpState = STATE_SEND_RRQ;
780 TftpTimeoutCountMax = TftpRRQTimeoutCountMax;
782 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
783 NetSetHandler(TftpHandler);
784 #ifdef CONFIG_CMD_TFTPPUT
785 net_set_icmp_handler(icmp_handler);
787 TftpRemotePort = WELL_KNOWN_PORT;
788 TftpTimeoutCount = 0;
789 /* Use a pseudo-random port unless a specific port is set */
790 TftpOurPort = 1024 + (get_timer(0) % 3072);
792 #ifdef CONFIG_TFTP_PORT
793 ep = getenv("tftpdstp");
795 TftpRemotePort = simple_strtol(ep, NULL, 10);
796 ep = getenv("tftpsrcp");
798 TftpOurPort = simple_strtol(ep, NULL, 10);
802 /* zero out server ether in case the server ip has changed */
803 memset(NetServerEther, 0, 6);
804 /* Revert TftpBlkSize to dflt */
805 TftpBlkSize = TFTP_BLOCK_SIZE;
806 #ifdef CONFIG_MCAST_TFTP
809 #ifdef CONFIG_TFTP_TSIZE
817 #ifdef CONFIG_CMD_TFTPSRV
819 TftpStartServer(void)
821 tftp_filename[0] = 0;
823 printf("Using %s device\n", eth_get_name());
824 printf("Listening for TFTP transfer on %pI4\n", &NetOurIP);
825 printf("Load address: 0x%lx\n", load_addr);
827 puts("Loading: *\b");
829 TftpTimeoutCountMax = TIMEOUT_COUNT;
830 TftpTimeoutCount = 0;
831 TftpTimeoutMSecs = TIMEOUT;
832 NetSetTimeout(TftpTimeoutMSecs, TftpTimeout);
834 /* Revert TftpBlkSize to dflt */
835 TftpBlkSize = TFTP_BLOCK_SIZE;
837 TftpOurPort = WELL_KNOWN_PORT;
839 #ifdef CONFIG_TFTP_TSIZE
844 TftpState = STATE_RECV_WRQ;
845 NetSetHandler(TftpHandler);
847 #endif /* CONFIG_CMD_TFTPSRV */
849 #ifdef CONFIG_MCAST_TFTP
850 /* Credits: atftp project.
853 /* pick up BcastAddr, Port, and whether I am [now] the master-client. *
855 * +-------+-----------+---+-------~~-------+---+
856 * | opc | multicast | 0 | addr, port, mc | 0 |
857 * +-------+-----------+---+-------~~-------+---+
858 * The multicast addr/port becomes what I listen to, and if 'mc' is '1' then
859 * I am the new master-client so must send ACKs to DataBlocks. If I am not
860 * master-client, I'm a passive client, gathering what DataBlocks I may and
861 * making note of which ones I got in my bitmask.
862 * In theory, I never go from master->passive..
863 * .. this comes in with pkt already pointing just past opc
865 static void parse_multicast_oack(char *pkt, int len)
869 char *mc_adr, *port, *mc;
871 mc_adr = port = mc = NULL;
872 /* march along looking for 'multicast\0', which has to start at least
873 * 14 bytes back from the end.
875 for (i = 0; i < len-14; i++)
876 if (strcmp(pkt+i, "multicast") == 0)
878 if (i >= (len-14)) /* non-Multicast OACK, ign. */
881 i += 10; /* strlen multicast */
883 for (; i < len; i++) {
884 if (*(pkt+i) == ',') {
894 if (!port || !mc_adr || !mc)
896 if (Multicast && MasterClient) {
897 printf("I got a OACK as master Client, WRONG!\n");
900 /* ..I now accept packets destined for this MCAST addr, port */
903 printf("Internal failure! no mcast.\n");
909 /* I malloc instead of pre-declare; so that if the file ends
910 * up being too big for this bitmap I can retry
912 Bitmap = malloc(Mapsize);
914 printf("No Bitmap, no multicast. Sorry.\n");
918 memset(Bitmap, 0, Mapsize);
922 addr = string_to_ip(mc_adr);
923 if (Mcast_addr != addr) {
925 eth_mcast_join(Mcast_addr, 0);
927 if (eth_mcast_join(Mcast_addr, 1)) {
928 printf("Fail to set mcast, revert to TFTP\n");
934 MasterClient = (unsigned char)simple_strtoul((char *)mc, NULL, 10);
935 Mcast_port = (unsigned short)simple_strtoul(port, NULL, 10);
936 printf("Multicast: %s:%d [%d]\n", mc_adr, Mcast_port, MasterClient);
940 #endif /* Multicast TFTP */