Re: Why are high ports used by SFTP server implementation?

2016-02-23 Thread Chad Beaulac
Hey Dave, Listener servers hand off to ephemeral ports. http://www.ncftp.com/ncftpd/doc/misc/ephemeral_ports.html You need ephemeral ports so a server can start listening on port 22 again while something else is happening. Look here for some configuration options.

Re: Handling Multiple Message in Decoder

2015-06-30 Thread Chad Beaulac
Can you use the supplied PrefixedStringEncode and PrefixedStringDecoder? // Encode String messages up to 16k big, first two bytes are size of string PrefixedStringEncoder(Charset.forName(UTF-8),2, 1024*16); // Decode String messages up to 16k big, first two bytes are size of string

Re: Mina with Java AIO

2012-01-25 Thread Chad Beaulac
Punt on Java 6 and just goto Java 7 with Mina 3? Chad Sent from my iPad On Jan 25, 2012, at 1:59 PM, Emmanuel Lecharny elecha...@gmail.com wrote: On 1/25/12 7:43 PM, Alexander Christian wrote: Hi there, is there any plan/roadmap to support Java AIO, which comes with Java7?! We have to