Changeset ba33011 in network-demos
- Timestamp:
- 06/21/07 18:26:30 (15 years ago)
- Branches:
- 4.11, 57a009d5b89e72f488ab655184e6a33bb0fe6b7f, network-demos-4-10-branch, network-demos-4-8-branch, network-demos-4-9-branch
- Children:
- 30dff73
- Parents:
- 557c93a
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
dnstest/ChangeLog
r557c93a rba33011 1 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * init.c: More warnings removed. 4 1 5 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 6 -
dnstest/init.c
r557c93a rba33011 43 43 44 44 #include <stdio.h> 45 #include <stdlib.h> 45 46 #include <rtems/rtems_bsdnet.h> 46 47 #include "../networkconfig.h" -
http/ChangeLog
r557c93a rba33011 1 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * init.c: More warnings removed. 4 1 5 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 6 -
http/init.c
r557c93a rba33011 103 103 rtems_initialize_ftpd(); 104 104 105 status = Untar_FromMemory(( unsigned char *)(&TARFILE_START),&TARFILE_SIZE);105 status = Untar_FromMemory((void *)(&TARFILE_START), (size_t)&TARFILE_SIZE); 106 106 #endif 107 107 -
netlink/ChangeLog
r557c93a rba33011 1 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * init.c: More warnings removed. 4 1 5 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 6 -
netlink/init.c
r557c93a rba33011 92 92 93 93 #if INCLUDE_FTPD 94 status = Untar_FromMemory(( unsigned char*)(&_binary_tarfile_start),95 &_binary_tarfile_size);94 status = Untar_FromMemory((void *)(&_binary_tarfile_start), 95 (size_t)&_binary_tarfile_size); 96 96 rtems_initialize_ftpd(); 97 97 … … 99 99 100 100 #if INCLUDE_HTTPD 101 status = Untar_FromMemory(( unsigned char*)(&_binary_tarfile_start),102 &_binary_tarfile_size);101 status = Untar_FromMemory((void *)(&_binary_tarfile_start), 102 (size_t)&_binary_tarfile_size); 103 103 rtems_initialize_webserver(); 104 104 #endif -
ntp/ChangeLog
r557c93a rba33011 1 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * init.c: More warnings removed. 4 1 5 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 6 -
ntp/init.c
r557c93a rba33011 43 43 44 44 #include <stdio.h> 45 #include <stdlib.h> 45 46 #include <rtems/rtems_bsdnet.h> 46 47 #include <rtems/error.h> … … 70 71 if (sc != RTEMS_SUCCESSFUL) 71 72 printf ("Failed to get time of day: %s\n", rtems_status_text (sc)); 72 printf ("The time is **** %.4d-%.2d-%.2d %.2d:%.2d:%.2d.%.3d (%d) ****\n", 73 now.year, 74 now.month, 75 now.day, 76 now.hour, 77 now.minute, 78 now.second, 79 (now.ticks * 1000) / ticksPerSecond, 80 now.ticks); 73 printf ( 74 "The time is **** %.4ld-%.2ld-%.2ld %.2ld:%.2ld:%.2ld.%.3ld (%ld) ****\n", 75 (long) now.year, 76 (long) now.month, 77 (long) now.day, 78 (long) now.hour, 79 (long) now.minute, 80 (long) now.second, 81 (long) ((now.ticks * 1000) / ticksPerSecond), 82 (long) now.ticks); 81 83 exit (0); 82 84 } -
ttcp/ChangeLog
r557c93a rba33011 1 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * init.c: More warnings removed. 4 1 5 2007-06-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 6 -
ttcp/init.c
r557c93a rba33011 43 43 44 44 #include <stdio.h> 45 #include <stdlib.h> 45 46 #include <rtems/rtems_bsdnet.h> 46 47 #include "../networkconfig.h" 48 49 void test_network (void); 47 50 48 51 /*
Note: See TracChangeset
for help on using the changeset viewer.