xref: /rk3399_rockchip-uboot/net/tftp.c (revision 0ebf04c607b54a352629dcf7e76b76f1785dae54)
1 /*
2  *	Copyright 1994, 1995, 2000 Neil Russell.
3  *	(See License)
4  *	Copyright 2000, 2001 DENX Software Engineering, Wolfgang Denk, wd@denx.de
5  */
6 
7 #include <common.h>
8 #include <command.h>
9 #include <net.h>
10 #include "tftp.h"
11 #include "bootp.h"
12 
13 #if defined(CONFIG_CMD_NET)
14 
15 #define WELL_KNOWN_PORT	69		/* Well known TFTP port #		*/
16 #define TIMEOUT		5000UL		/* Millisecs to timeout for lost pkt */
17 #ifndef	CONFIG_NET_RETRY_COUNT
18 # define TIMEOUT_COUNT	10		/* # of timeouts before giving up  */
19 #else
20 # define TIMEOUT_COUNT  (CONFIG_NET_RETRY_COUNT * 2)
21 #endif
22 					/* (for checking the image size)	*/
23 #define HASHES_PER_LINE	65		/* Number of "loading" hashes per line	*/
24 
25 /*
26  *	TFTP operations.
27  */
28 #define TFTP_RRQ	1
29 #define TFTP_WRQ	2
30 #define TFTP_DATA	3
31 #define TFTP_ACK	4
32 #define TFTP_ERROR	5
33 #define TFTP_OACK	6
34 
35 static ulong TftpTimeoutMSecs = TIMEOUT;
36 static int TftpTimeoutCountMax = TIMEOUT_COUNT;
37 
38 /*
39  * These globals govern the timeout behavior when attempting a connection to a
40  * TFTP server. TftpRRQTimeoutMSecs specifies the number of milliseconds to
41  * wait for the server to respond to initial connection. Second global,
42  * TftpRRQTimeoutCountMax, gives the number of such connection retries.
43  * TftpRRQTimeoutCountMax must be non-negative and TftpRRQTimeoutMSecs must be
44  * positive. The globals are meant to be set (and restored) by code needing
45  * non-standard timeout behavior when initiating a TFTP transfer.
46  */
47 ulong TftpRRQTimeoutMSecs = TIMEOUT;
48 int TftpRRQTimeoutCountMax = TIMEOUT_COUNT;
49 
50 static IPaddr_t TftpServerIP;
51 static int	TftpServerPort;		/* The UDP port at their end		*/
52 static int	TftpOurPort;		/* The UDP port at our end		*/
53 static int	TftpTimeoutCount;
54 static ulong	TftpBlock;		/* packet sequence number		*/
55 static ulong	TftpLastBlock;		/* last packet sequence number received */
56 static ulong	TftpBlockWrap;		/* count of sequence number wraparounds */
57 static ulong	TftpBlockWrapOffset;	/* memory offset due to wrapping	*/
58 static int	TftpState;
59 
60 #define STATE_RRQ	1
61 #define STATE_DATA	2
62 #define STATE_TOO_LARGE	3
63 #define STATE_BAD_MAGIC	4
64 #define STATE_OACK	5
65 
66 #define TFTP_BLOCK_SIZE		512		    /* default TFTP block size	*/
67 #define TFTP_SEQUENCE_SIZE	((ulong)(1<<16))    /* sequence number is 16 bit */
68 
69 #define DEFAULT_NAME_LEN	(8 + 4 + 1)
70 static char default_filename[DEFAULT_NAME_LEN];
71 
72 #ifndef CONFIG_TFTP_FILE_NAME_MAX_LEN
73 #define MAX_LEN 128
74 #else
75 #define MAX_LEN CONFIG_TFTP_FILE_NAME_MAX_LEN
76 #endif
77 
78 static char tftp_filename[MAX_LEN];
79 
80 #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
81 extern flash_info_t flash_info[];
82 #endif
83 
84 /* 512 is poor choice for ethernet, MTU is typically 1500.
85  * Minus eth.hdrs thats 1468.  Can get 2x better throughput with
86  * almost-MTU block sizes.  At least try... fall back to 512 if need be.
87  */
88 #define TFTP_MTU_BLOCKSIZE 1468
89 static unsigned short TftpBlkSize=TFTP_BLOCK_SIZE;
90 static unsigned short TftpBlkSizeOption=TFTP_MTU_BLOCKSIZE;
91 
92 #ifdef CONFIG_MCAST_TFTP
93 #include <malloc.h>
94 #define MTFTP_BITMAPSIZE	0x1000
95 static unsigned *Bitmap;
96 static int PrevBitmapHole,Mapsize=MTFTP_BITMAPSIZE;
97 static uchar ProhibitMcast=0, MasterClient=0;
98 static uchar Multicast=0;
99 extern IPaddr_t Mcast_addr;
100 static int Mcast_port;
101 static ulong TftpEndingBlock; /* can get 'last' block before done..*/
102 
103 static void parse_multicast_oack(char *pkt,int len);
104 
105 static void
106 mcast_cleanup(void)
107 {
108 	if (Mcast_addr) eth_mcast_join(Mcast_addr, 0);
109 	if (Bitmap) free(Bitmap);
110 	Bitmap=NULL;
111 	Mcast_addr = Multicast = Mcast_port = 0;
112 	TftpEndingBlock = -1;
113 }
114 
115 #endif	/* CONFIG_MCAST_TFTP */
116 
117 static __inline__ void
118 store_block (unsigned block, uchar * src, unsigned len)
119 {
120 	ulong offset = block * TftpBlkSize + TftpBlockWrapOffset;
121 	ulong newsize = offset + len;
122 #ifdef CONFIG_SYS_DIRECT_FLASH_TFTP
123 	int i, rc = 0;
124 
125 	for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; i++) {
126 		/* start address in flash? */
127 		if (flash_info[i].flash_id == FLASH_UNKNOWN)
128 			continue;
129 		if (load_addr + offset >= flash_info[i].start[0]) {
130 			rc = 1;
131 			break;
132 		}
133 	}
134 
135 	if (rc) { /* Flash is destination for this packet */
136 		rc = flash_write ((char *)src, (ulong)(load_addr+offset), len);
137 		if (rc) {
138 			flash_perror (rc);
139 			NetState = NETLOOP_FAIL;
140 			return;
141 		}
142 	}
143 	else
144 #endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */
145 	{
146 		(void)memcpy((void *)(load_addr + offset), src, len);
147 	}
148 #ifdef CONFIG_MCAST_TFTP
149 	if (Multicast)
150 		ext2_set_bit(block, Bitmap);
151 #endif
152 
153 	if (NetBootFileXferSize < newsize)
154 		NetBootFileXferSize = newsize;
155 }
156 
157 static void TftpSend (void);
158 static void TftpTimeout (void);
159 
160 /**********************************************************************/
161 
162 static void
163 TftpSend (void)
164 {
165 	volatile uchar *	pkt;
166 	volatile uchar *	xp;
167 	int			len = 0;
168 	volatile ushort *s;
169 
170 #ifdef CONFIG_MCAST_TFTP
171 	/* Multicast TFTP.. non-MasterClients do not ACK data. */
172 	if (Multicast
173 	 && (TftpState == STATE_DATA)
174 	 && (MasterClient == 0))
175 		return;
176 #endif
177 	/*
178 	 *	We will always be sending some sort of packet, so
179 	 *	cobble together the packet headers now.
180 	 */
181 	pkt = NetTxPacket + NetEthHdrSize() + IP_HDR_SIZE;
182 
183 	switch (TftpState) {
184 
185 	case STATE_RRQ:
186 		xp = pkt;
187 		s = (ushort *)pkt;
188 		*s++ = htons(TFTP_RRQ);
189 		pkt = (uchar *)s;
190 		strcpy ((char *)pkt, tftp_filename);
191 		pkt += strlen(tftp_filename) + 1;
192 		strcpy ((char *)pkt, "octet");
193 		pkt += 5 /*strlen("octet")*/ + 1;
194 		strcpy ((char *)pkt, "timeout");
195 		pkt += 7 /*strlen("timeout")*/ + 1;
196 		sprintf((char *)pkt, "%lu", TIMEOUT / 1000);
197 		debug("send option \"timeout %s\"\n", (char *)pkt);
198 		pkt += strlen((char *)pkt) + 1;
199 		/* try for more effic. blk size */
200 		pkt += sprintf((char *)pkt,"blksize%c%d%c",
201 				0,TftpBlkSizeOption,0);
202 #ifdef CONFIG_MCAST_TFTP
203 		/* Check all preconditions before even trying the option */
204 		if (!ProhibitMcast
205 		 && (Bitmap=malloc(Mapsize))
206 		 && eth_get_dev()->mcast) {
207 			free(Bitmap);
208 			Bitmap=NULL;
209 			pkt += sprintf((char *)pkt,"multicast%c%c",0,0);
210 		}
211 #endif /* CONFIG_MCAST_TFTP */
212 		len = pkt - xp;
213 		break;
214 
215 	case STATE_OACK:
216 #ifdef CONFIG_MCAST_TFTP
217 		/* My turn!  Start at where I need blocks I missed.*/
218 		if (Multicast)
219 			TftpBlock=ext2_find_next_zero_bit(Bitmap,(Mapsize*8),0);
220 		/*..falling..*/
221 #endif
222 	case STATE_DATA:
223 		xp = pkt;
224 		s = (ushort *)pkt;
225 		*s++ = htons(TFTP_ACK);
226 		*s++ = htons(TftpBlock);
227 		pkt = (uchar *)s;
228 		len = pkt - xp;
229 		break;
230 
231 	case STATE_TOO_LARGE:
232 		xp = pkt;
233 		s = (ushort *)pkt;
234 		*s++ = htons(TFTP_ERROR);
235 		*s++ = htons(3);
236 		pkt = (uchar *)s;
237 		strcpy ((char *)pkt, "File too large");
238 		pkt += 14 /*strlen("File too large")*/ + 1;
239 		len = pkt - xp;
240 		break;
241 
242 	case STATE_BAD_MAGIC:
243 		xp = pkt;
244 		s = (ushort *)pkt;
245 		*s++ = htons(TFTP_ERROR);
246 		*s++ = htons(2);
247 		pkt = (uchar *)s;
248 		strcpy ((char *)pkt, "File has bad magic");
249 		pkt += 18 /*strlen("File has bad magic")*/ + 1;
250 		len = pkt - xp;
251 		break;
252 	}
253 
254 	NetSendUDPPacket(NetServerEther, TftpServerIP, TftpServerPort, TftpOurPort, len);
255 }
256 
257 
258 static void
259 TftpHandler (uchar * pkt, unsigned dest, unsigned src, unsigned len)
260 {
261 	ushort proto;
262 	ushort *s;
263 	int i;
264 
265 	if (dest != TftpOurPort) {
266 #ifdef CONFIG_MCAST_TFTP
267 		if (Multicast
268 		 && (!Mcast_port || (dest != Mcast_port)))
269 #endif
270 		return;
271 	}
272 	if (TftpState != STATE_RRQ && src != TftpServerPort) {
273 		return;
274 	}
275 
276 	if (len < 2) {
277 		return;
278 	}
279 	len -= 2;
280 	/* warning: don't use increment (++) in ntohs() macros!! */
281 	s = (ushort *)pkt;
282 	proto = *s++;
283 	pkt = (uchar *)s;
284 	switch (ntohs(proto)) {
285 
286 	case TFTP_RRQ:
287 	case TFTP_WRQ:
288 	case TFTP_ACK:
289 		break;
290 	default:
291 		break;
292 
293 	case TFTP_OACK:
294 		debug("Got OACK: %s %s\n", pkt, pkt+strlen(pkt)+1);
295 		TftpState = STATE_OACK;
296 		TftpServerPort = src;
297 		/*
298 		 * Check for 'blksize' option.
299 		 * Careful: "i" is signed, "len" is unsigned, thus
300 		 * something like "len-8" may give a *huge* number
301 		 */
302 		for (i=0; i+8<len; i++) {
303 			if (strcmp ((char*)pkt+i,"blksize") == 0) {
304 				TftpBlkSize = (unsigned short)
305 					simple_strtoul((char*)pkt+i+8,NULL,10);
306 				debug("Blocksize ack: %s, %d\n",
307 					(char*)pkt+i+8,TftpBlkSize);
308 				break;
309 			}
310 		}
311 #ifdef CONFIG_MCAST_TFTP
312 		parse_multicast_oack((char *)pkt,len-1);
313 		if ((Multicast) && (!MasterClient))
314 			TftpState = STATE_DATA;	/* passive.. */
315 		else
316 #endif
317 		TftpSend (); /* Send ACK */
318 		break;
319 	case TFTP_DATA:
320 		if (len < 2)
321 			return;
322 		len -= 2;
323 		TftpBlock = ntohs(*(ushort *)pkt);
324 
325 		/*
326 		 * RFC1350 specifies that the first data packet will
327 		 * have sequence number 1. If we receive a sequence
328 		 * number of 0 this means that there was a wrap
329 		 * around of the (16 bit) counter.
330 		 */
331 		if (TftpBlock == 0) {
332 			TftpBlockWrap++;
333 			TftpBlockWrapOffset += TftpBlkSize * TFTP_SEQUENCE_SIZE;
334 			printf ("\n\t %lu MB received\n\t ", TftpBlockWrapOffset>>20);
335 		} else {
336 			if (((TftpBlock - 1) % 10) == 0) {
337 				putc ('#');
338 			} else if ((TftpBlock % (10 * HASHES_PER_LINE)) == 0) {
339 				puts ("\n\t ");
340 			}
341 		}
342 
343 		if (TftpState == STATE_RRQ)
344 			debug("Server did not acknowledge timeout option!\n");
345 
346 		if (TftpState == STATE_RRQ || TftpState == STATE_OACK) {
347 			/* first block received */
348 			TftpState = STATE_DATA;
349 			TftpServerPort = src;
350 			TftpLastBlock = 0;
351 			TftpBlockWrap = 0;
352 			TftpBlockWrapOffset = 0;
353 
354 #ifdef CONFIG_MCAST_TFTP
355 			if (Multicast) { /* start!=1 common if mcast */
356 				TftpLastBlock = TftpBlock - 1;
357 			} else
358 #endif
359 			if (TftpBlock != 1) {	/* Assertion */
360 				printf ("\nTFTP error: "
361 					"First block is not block 1 (%ld)\n"
362 					"Starting again\n\n",
363 					TftpBlock);
364 				NetStartAgain ();
365 				break;
366 			}
367 		}
368 
369 		if (TftpBlock == TftpLastBlock) {
370 			/*
371 			 *	Same block again; ignore it.
372 			 */
373 			break;
374 		}
375 
376 		TftpLastBlock = TftpBlock;
377 		TftpTimeoutMSecs = TIMEOUT;
378 		TftpTimeoutCountMax = TIMEOUT_COUNT;
379 		NetSetTimeout (TftpTimeoutMSecs, TftpTimeout);
380 
381 		store_block (TftpBlock - 1, pkt + 2, len);
382 
383 		/*
384 		 *	Acknoledge the block just received, which will prompt
385 		 *	the server for the next one.
386 		 */
387 #ifdef CONFIG_MCAST_TFTP
388 		/* if I am the MasterClient, actively calculate what my next
389 		 * needed block is; else I'm passive; not ACKING
390 		 */
391 		if (Multicast) {
392 			if (len < TftpBlkSize)  {
393 				TftpEndingBlock = TftpBlock;
394 			} else if (MasterClient) {
395 				TftpBlock = PrevBitmapHole =
396 					ext2_find_next_zero_bit(
397 						Bitmap,
398 						(Mapsize*8),
399 						PrevBitmapHole);
400 				if (TftpBlock > ((Mapsize*8) - 1)) {
401 					printf ("tftpfile too big\n");
402 					/* try to double it and retry */
403 					Mapsize<<=1;
404 					mcast_cleanup();
405 					NetStartAgain ();
406 					return;
407 				}
408 				TftpLastBlock = TftpBlock;
409 			}
410 		}
411 #endif
412 		TftpSend ();
413 
414 #ifdef CONFIG_MCAST_TFTP
415 		if (Multicast) {
416 			if (MasterClient && (TftpBlock >= TftpEndingBlock)) {
417 				puts ("\nMulticast tftp done\n");
418 				mcast_cleanup();
419 				NetState = NETLOOP_SUCCESS;
420 			}
421 		}
422 		else
423 #endif
424 		if (len < TftpBlkSize) {
425 			/*
426 			 *	We received the whole thing.  Try to
427 			 *	run it.
428 			 */
429 			puts ("\ndone\n");
430 			NetState = NETLOOP_SUCCESS;
431 		}
432 		break;
433 
434 	case TFTP_ERROR:
435 		printf ("\nTFTP error: '%s' (%d)\n",
436 					pkt + 2, ntohs(*(ushort *)pkt));
437 		puts ("Starting again\n\n");
438 #ifdef CONFIG_MCAST_TFTP
439 		mcast_cleanup();
440 #endif
441 		NetStartAgain ();
442 		break;
443 	}
444 }
445 
446 
447 static void
448 TftpTimeout (void)
449 {
450 	if (++TftpTimeoutCount > TftpTimeoutCountMax) {
451 		puts ("\nRetry count exceeded; starting again\n");
452 #ifdef CONFIG_MCAST_TFTP
453 		mcast_cleanup();
454 #endif
455 		NetStartAgain ();
456 	} else {
457 		puts ("T ");
458 		NetSetTimeout (TftpTimeoutMSecs, TftpTimeout);
459 		TftpSend ();
460 	}
461 }
462 
463 
464 void
465 TftpStart (void)
466 {
467 #ifdef CONFIG_TFTP_PORT
468 	char *ep;             /* Environment pointer */
469 #endif
470 
471 	TftpServerIP = NetServerIP;
472 	if (BootFile[0] == '\0') {
473 		sprintf(default_filename, "%02lX%02lX%02lX%02lX.img",
474 			NetOurIP & 0xFF,
475 			(NetOurIP >>  8) & 0xFF,
476 			(NetOurIP >> 16) & 0xFF,
477 			(NetOurIP >> 24) & 0xFF	);
478 
479 		strncpy(tftp_filename, default_filename, MAX_LEN);
480 		tftp_filename[MAX_LEN-1] = 0;
481 
482 		printf ("*** Warning: no boot file name; using '%s'\n",
483 			tftp_filename);
484 	} else {
485 		char *p = strchr (BootFile, ':');
486 
487 		if (p == NULL) {
488 			strncpy(tftp_filename, BootFile, MAX_LEN);
489 			tftp_filename[MAX_LEN-1] = 0;
490 		} else {
491 			TftpServerIP = string_to_ip (BootFile);
492 			strncpy(tftp_filename, p + 1, MAX_LEN);
493 			tftp_filename[MAX_LEN-1] = 0;
494 		}
495 	}
496 
497 #if defined(CONFIG_NET_MULTI)
498 	printf ("Using %s device\n", eth_get_name());
499 #endif
500 	printf("TFTP from server %pI4"
501 		"; our IP address is %pI4", &TftpServerIP, &NetOurIP);
502 
503 	/* Check if we need to send across this subnet */
504 	if (NetOurGatewayIP && NetOurSubnetMask) {
505 	    IPaddr_t OurNet	= NetOurIP    & NetOurSubnetMask;
506 	    IPaddr_t ServerNet	= TftpServerIP & NetOurSubnetMask;
507 
508 	    if (OurNet != ServerNet)
509 		printf("; sending through gateway %pI4", &NetOurGatewayIP);
510 	}
511 	putc ('\n');
512 
513 	printf ("Filename '%s'.", tftp_filename);
514 
515 	if (NetBootFileSize) {
516 		printf (" Size is 0x%x Bytes = ", NetBootFileSize<<9);
517 		print_size (NetBootFileSize<<9, "");
518 	}
519 
520 	putc ('\n');
521 
522 	printf ("Load address: 0x%lx\n", load_addr);
523 
524 	puts ("Loading: *\b");
525 
526 	TftpTimeoutMSecs = TftpRRQTimeoutMSecs;
527 	TftpTimeoutCountMax = TftpRRQTimeoutCountMax;
528 
529 	NetSetTimeout (TftpTimeoutMSecs, TftpTimeout);
530 	NetSetHandler (TftpHandler);
531 
532 	TftpServerPort = WELL_KNOWN_PORT;
533 	TftpTimeoutCount = 0;
534 	TftpState = STATE_RRQ;
535 	/* Use a pseudo-random port unless a specific port is set */
536 	TftpOurPort = 1024 + (get_timer(0) % 3072);
537 
538 #ifdef CONFIG_TFTP_PORT
539 	if ((ep = getenv("tftpdstp")) != NULL) {
540 		TftpServerPort = simple_strtol(ep, NULL, 10);
541 	}
542 	if ((ep = getenv("tftpsrcp")) != NULL) {
543 		TftpOurPort= simple_strtol(ep, NULL, 10);
544 	}
545 #endif
546 	TftpBlock = 0;
547 
548 	/* zero out server ether in case the server ip has changed */
549 	memset(NetServerEther, 0, 6);
550 	/* Revert TftpBlkSize to dflt */
551 	TftpBlkSize = TFTP_BLOCK_SIZE;
552 #ifdef CONFIG_MCAST_TFTP
553 	mcast_cleanup();
554 #endif
555 
556 	TftpSend ();
557 }
558 
559 #ifdef CONFIG_MCAST_TFTP
560 /* Credits: atftp project.
561  */
562 
563 /* pick up BcastAddr, Port, and whether I am [now] the master-client. *
564  * Frame:
565  *    +-------+-----------+---+-------~~-------+---+
566  *    |  opc  | multicast | 0 | addr, port, mc | 0 |
567  *    +-------+-----------+---+-------~~-------+---+
568  * The multicast addr/port becomes what I listen to, and if 'mc' is '1' then
569  * I am the new master-client so must send ACKs to DataBlocks.  If I am not
570  * master-client, I'm a passive client, gathering what DataBlocks I may and
571  * making note of which ones I got in my bitmask.
572  * In theory, I never go from master->passive..
573  * .. this comes in with pkt already pointing just past opc
574  */
575 static void parse_multicast_oack(char *pkt, int len)
576 {
577  int i;
578  IPaddr_t addr;
579  char *mc_adr, *port,  *mc;
580 
581 	mc_adr=port=mc=NULL;
582 	/* march along looking for 'multicast\0', which has to start at least
583 	 * 14 bytes back from the end.
584 	 */
585 	for (i=0;i<len-14;i++)
586 		if (strcmp (pkt+i,"multicast") == 0)
587 			break;
588 	if (i >= (len-14)) /* non-Multicast OACK, ign. */
589 		return;
590 
591 	i+=10; /* strlen multicast */
592 	mc_adr = pkt+i;
593 	for (;i<len;i++) {
594 		if (*(pkt+i) == ',') {
595 			*(pkt+i) = '\0';
596 			if (port) {
597 				mc = pkt+i+1;
598 				break;
599 			} else {
600 				port = pkt+i+1;
601 			}
602 		}
603 	}
604 	if (!port || !mc_adr || !mc ) return;
605 	if (Multicast && MasterClient) {
606 		printf ("I got a OACK as master Client, WRONG!\n");
607 		return;
608 	}
609 	/* ..I now accept packets destined for this MCAST addr, port */
610 	if (!Multicast) {
611 		if (Bitmap) {
612 			printf ("Internal failure! no mcast.\n");
613 			free(Bitmap);
614 			Bitmap=NULL;
615 			ProhibitMcast=1;
616 			return ;
617 		}
618 		/* I malloc instead of pre-declare; so that if the file ends
619 		 * up being too big for this bitmap I can retry
620 		 */
621 		if (!(Bitmap = malloc (Mapsize))) {
622 			printf ("No Bitmap, no multicast. Sorry.\n");
623 			ProhibitMcast=1;
624 			return;
625 		}
626 		memset (Bitmap,0,Mapsize);
627 		PrevBitmapHole = 0;
628 		Multicast = 1;
629 	}
630 	addr = string_to_ip(mc_adr);
631 	if (Mcast_addr != addr) {
632 		if (Mcast_addr)
633 			eth_mcast_join(Mcast_addr, 0);
634 		if (eth_mcast_join(Mcast_addr=addr, 1)) {
635 			printf ("Fail to set mcast, revert to TFTP\n");
636 			ProhibitMcast=1;
637 			mcast_cleanup();
638 			NetStartAgain();
639 		}
640 	}
641 	MasterClient = (unsigned char)simple_strtoul((char *)mc,NULL,10);
642 	Mcast_port = (unsigned short)simple_strtoul(port,NULL,10);
643 	printf ("Multicast: %s:%d [%d]\n", mc_adr, Mcast_port, MasterClient);
644 	return;
645 }
646 
647 #endif /* Multicast TFTP */
648 
649 #endif
650