Altera_Forum
Honored Contributor
20 years agouClinux 1.3 FTP server?
I'm writting an application in Python to access the FTP server on my uClinux box. My code works perfectly with a full blown instalation of Linux on the x86 platform. However when I try to do cirtain functions on the ftp server on uClinux I get an error. The error is "10049, "Can't assign requested address".
This error is thrown on a sending a "LIST" command. (amung other things like "STOR") My python code looks like this. ftp = FTP('192.168.0.2') ftp.login("nios","uClinux") ftp.cwd("//home/ftp") print ftp.retrlines('LIST') Any sugestions? Is the server not full featured enough to support this or what? Thanks.