Re: [Twisted-Python] Is Ampoule still maintained?

2012-11-20 Thread Maxim Lacrima
Hi, glyph! Would anyone else like to step up to volunteer to maintain Ampoule? > > Twisted eventually needs to grow its own simplified process pool, and my > hope was that Ampoule could serve as a proving ground to get that > implemented and tested well. I can probably harass dialtone to give co

Re: [Twisted-Python] Is Ampoule still maintained?

2012-11-20 Thread gelin yan
On Tue, Nov 20, 2012 at 4:41 PM, Maxim Lacrima wrote: > Hi, glyph! > > > Would anyone else like to step up to volunteer to maintain Ampoule? >> >> Twisted eventually needs to grow its own simplified process pool, and my >> hope was that Ampoule could serve as a proving ground to get that >> implem

[Twisted-Python] ftp passive mode returning internal IP

2012-11-20 Thread Paul Wiseman
This possibly has nothing to do with twisted, but maybe if not someone may be able to point me in the right direction! Basically I've set up a twisted FTP server on ec2, and when a client tries to enter passive mode I'm getting this: Response: 227 Entering Passive Mode (x,x,x,x,159,122). Status:

Re: [Twisted-Python] ftp passive mode returning internal IP

2012-11-20 Thread Adi Roiban
Hi, I don't think there is support for configuring the advertised IP address. I don't know how EC2 ip forwarding works and how can you retrieve it. To use another IP address, in FTP.ftp_PASV(), look for the following lines: self.dtpPort = self.getDTPPort(self.dtpFactory) host =

Re: [Twisted-Python] ftp passive mode returning internal IP

2012-11-20 Thread Paul Wiseman
On 20 November 2012 21:31, Adi Roiban wrote: > Hi, > > I don't think there is support for configuring the advertised IP address. > I don't know how EC2 ip forwarding works and how can you retrieve it. > > To use another IP address, in FTP.ftp_PASV(), look for the following lines: > > self