> [AMD Official Use Only - AMD Internal Distribution Only] > > Hi team, > > I am facing an issue with busybox using httpd webserver, Is there any > limitation in the busybox webserver for maximum allowed file size?
The file size is only limited by the max value of off_t. > I can send file size which are below 2GB to the webserver but not which are > above 2GB size? If yes, can we change this limit? This sounds like off_t is only 32 bits. You could try adding '-D_FILE_OFFSET_BITS=64' to CFLAGS when compiling busybox. > Thanks, > Sharath _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
