Hi Adam, Trustin and others.<div><br></div><div>I thinks there is a growing interest in implementing proxies with Netty.</div><div>I&#39;m working on a generic Proxy that should be able to filter http and im traffic.</div>

<div><br></div><div>Do you think we could work together on a unified project/codebase?</div><div>Maybe our requirements are not equal, but I&#39;m sure there is a lot of commonality.</div><div><br></div><div>Please drop me a line if you are interested. I&#39;m more than willing to share my code (MSN protocol filter running with netty using IOC and DI) and have more eyes on the project.</div>

<div><br></div><div>leandro.saad (at) gmail</div><div><br></div><div>--<br clear="all">Leandro Rodrigo Saad Cruz<br>
<br><br><div class="gmail_quote">On Sat, Mar 6, 2010 at 7:13 PM, Adam Fisk <span dir="ltr">&lt;<a href="mailto:a@littleshoot.org">a@littleshoot.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Congrats on this, Trustin, especially the zero-copy transfers! The<br>
&quot;Transfer-Encoding: chunked&quot; semantics are working great on<br>
LittleProxy so far, and a new version should be coming out soon with<br>
the beta incorporated.<br>
<br>
Thanks for your hard work as always.<br>
<font color="#888888"><br>
-Adam<br>
</font><div><div></div><div class="h5"><br>
<br>
On Fri, Mar 5, 2010 at 7:33 AM, jfarcand &lt;<a href="mailto:jfarcand@ning.com">jfarcand@ning.com</a>&gt; wrote:<br>
&gt; Awesome work, Trustin!<br>
&gt;<br>
&gt; -- Jeanfrancois<br>
&gt;<br>
&gt; On 10-03-04 8:51 PM, &quot;Trustin Lee (이희승)&quot; wrote:<br>
&gt;&gt; Hi folks,<br>
&gt;&gt;<br>
&gt;&gt; Netty 3.2.0.BETA1, the first beta release in 3.2 branch, has been<br>
&gt;&gt; released after long awaits.<br>
&gt;&gt;<br>
&gt;&gt; The Netty project is an effort to provide an asynchronous, event-driven<br>
&gt;&gt; network application framework and tools for rapid development of<br>
&gt;&gt; maintainable, high-performance, high-scalability protocol servers and<br>
&gt;&gt; clients.<br>
&gt;&gt;<br>
&gt;&gt; In other words, Netty is an NIO client server framework that enables<br>
&gt;&gt; quick and easy development of network applications such as protocol<br>
&gt;&gt; servers and clients. It simplifies and streamlines network programming<br>
&gt;&gt; such as TCP and UDP socket servers<br>
&gt;&gt;<br>
&gt;&gt; Please visit our web site to get more information and download it.  Your<br>
&gt;&gt; feed back is more than appreciated - please visit the discussion forum<br>
&gt;&gt; and leave some comments and questions:<br>
&gt;&gt;<br>
&gt;&gt;    * <a href="http://www.jboss.org/netty/" target="_blank">http://www.jboss.org/netty/</a><br>
&gt;&gt;<br>
&gt;&gt; New Related Project: Ning&#39;s Asynchronous HTTP Client<br>
&gt;&gt; ====================================================<br>
&gt;&gt; Ning, one of the largest social platform provider, open-sourced their<br>
&gt;&gt; asynchronous HTTP client which uses Netty (and its HTTP codec) as its<br>
&gt;&gt; primary transport.  If you were using Netty directly to write an HTTP<br>
&gt;&gt; client, you might want to give this library a try because its API is<br>
&gt;&gt; very clean, simple and more HTTP-centric.<br>
&gt;&gt;<br>
&gt;&gt;    * announcement: <a href="http://is.gd/9ImoW" target="_blank">http://is.gd/9ImoW</a><br>
&gt;&gt;    *  github repo: <a href="http://github.com/ning/async-http-client" target="_blank">http://github.com/ning/async-http-client</a><br>
&gt;&gt;    * google group: <a href="http://groups.google.com/group/asynchttpclient" target="_blank">http://groups.google.com/group/asynchttpclient</a><br>
&gt;&gt;<br>
&gt;&gt; Notable changes since 3.2.0.ALPHA4<br>
&gt;&gt; ==================================<br>
&gt;&gt;<br>
&gt;&gt;    * Zero-copy file transfer: <a href="http://is.gd/8Z7dI" target="_blank">http://is.gd/8Z7dI</a><br>
&gt;&gt;    * The number of I/O threads has been doubled for better out-of-<br>
&gt;&gt;      the-box performance.<br>
&gt;&gt;    * Fixed performance regression in the NIO transport<br>
&gt;&gt;    * SslHandler became more secure by disabling renegotiation by default.<br>
&gt;&gt;<br>
&gt;&gt; For the complete list of resolved issues, visit the issue tracker:<br>
&gt;&gt;<br>
&gt;&gt;    * <a href="http://is.gd/9InDn" target="_blank">http://is.gd/9InDn</a><br>
&gt;&gt;<br>
&gt;&gt; Notable changes since <a href="http://3.1.5.GA" target="_blank">3.1.5.GA</a><br>
&gt;&gt; ==============================<br>
&gt;&gt;<br>
&gt;&gt;    * Overall performance improvement in NIO transport<br>
&gt;&gt;<br>
&gt;&gt;    * @ChannelPipelineCoverage annotation has been deprecated by the<br>
&gt;&gt;      @Sharable annotation to reduce beginner confusion<br>
&gt;&gt;<br>
&gt;&gt;    * ChannelBuffer improvements<br>
&gt;&gt;      * New access methods for float, double, and char<br>
&gt;&gt;      * New method: ensureWritableBytes(int)<br>
&gt;&gt;      * New method: bytesBefore() for easier variable length string decode<br>
&gt;&gt;      * All string conversion methods now use Charset instead of String.<br>
&gt;&gt;<br>
&gt;&gt;    * Channel API improvements<br>
&gt;&gt;      * Zero-copy file transfer in NIO transport: <a href="http://is.gd/8Z7dI" target="_blank">http://is.gd/8Z7dI</a><br>
&gt;&gt;      * StaticChannelPipeline: an alternative pipeline implementation<br>
&gt;&gt;<br>
&gt;&gt;    * HTTP codec improvements<br>
&gt;&gt;      * WebSocket support<br>
&gt;&gt;      * Complete trailing header support<br>
&gt;&gt;      * More robust CookieDecoder<br>
&gt;&gt;      * More convenience methods in HttpMessage<br>
&gt;&gt;<br>
&gt;&gt;    * Zlib-based compression handlers<br>
&gt;&gt;    * RTSP codec<br>
&gt;&gt;<br>
&gt;&gt; For the full changelog, please visit the issue tracker:<br>
&gt;&gt;<br>
&gt;&gt;    * <a href="http://jira.jboss.org/jira/browse/NETTY" target="_blank">http://jira.jboss.org/jira/browse/NETTY</a><br>
&gt;&gt;<br>
&gt;&gt; Upcoming Releases<br>
&gt;&gt; =================<br>
&gt;&gt; Since the HTTP tunneling transport has been rescheduled to the next<br>
&gt;&gt; major feature release (3.3), all planned features have been implemented.<br>
&gt;&gt;   Unless there is a critical issue, I will proceed to release candidate<br>
&gt;&gt; phase.<br>
&gt;&gt;<br>
&gt;&gt; Although 3.2 has been feature-frozen, the road map for 3.3 release is<br>
&gt;&gt; wide open.  Please keep posting new ideas so that we can pick them up<br>
&gt;&gt; for 3.3.<br>
&gt;&gt;<br>
&gt;&gt; Cheers,<br>
&gt;&gt; Trustin<br>
&gt;&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; netty-users mailing list<br>
&gt; <a href="mailto:netty-users@lists.jboss.org">netty-users@lists.jboss.org</a><br>
&gt; <a href="https://lists.jboss.org/mailman/listinfo/netty-users" target="_blank">https://lists.jboss.org/mailman/listinfo/netty-users</a><br>
<br>
<br>
<br>
</div></div><div class="im">--<br>
Adam Fisk<br>
<a href="http://www.littleshoot.org" target="_blank">http://www.littleshoot.org</a> | <a href="http://adamfisk.wordpress.com" target="_blank">http://adamfisk.wordpress.com</a> |<br>
<a href="http://twitter.com/adamfisk" target="_blank">http://twitter.com/adamfisk</a><br>
<br>
_______________________________________________<br>
</div><div><div></div><div class="h5">netty-users mailing list<br>
<a href="mailto:netty-users@lists.jboss.org">netty-users@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/netty-users" target="_blank">https://lists.jboss.org/mailman/listinfo/netty-users</a></div></div></blockquote></div><br></div>