<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2721065290360761967</id><updated>2012-01-07T14:39:41.740+01:00</updated><category term='boost'/><category term='contribute'/><category term='discussion'/><category term='announcement'/><category term='wiki'/><category term='specification'/><category term='requirements'/><category term='release'/><category term='architecture'/><category term='http'/><category term='c++'/><category term='networking'/><title type='text'>C++ Network Library</title><subtitle type='html'>Thoughts and progress on networking using C++.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>glynos</name><uri>http://www.blogger.com/profile/16161639738657629872</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-2484455603569698417</id><published>2010-11-21T09:22:00.000+01:00</published><updated>2010-11-21T09:22:53.773+01:00</updated><title type='text'>The C++ Network Library v0.8 Out Now!</title><content type='html'>The C++ Network Library team is proud to announce the availability of version 0.8 of the library after one whole week of getting feedback on the Beta version. The library is being maintained by &lt;a href="http://www.deanberris.com" target="_blank"&gt;Dean Michael Berris&lt;/a&gt; the project founder (and author of this blog) and is being supported by the C++ Network Library Developers through the &lt;a href="https://lists.sourceforge.net/lists/listinfo/cpp-netlib-devel" target="_blank"&gt;cpp-netlib developers mailing list&lt;/a&gt;. You can get the latest version of the library from the &lt;a href="https://github.com/cpp-netlib/cpp-netlib/downloads" target="_blank"&gt;Github repository downloads page&lt;/a&gt;. You can also find out more about cpp-netlib's 0.8 release from the online home of its documentation at &lt;a href="http://cpp-netlib.github.com/0.8/" target="_blank"&gt;http://cpp-netlib.github.com/0.8/&lt;/a&gt;.&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is the eighth minor version release of the library which is steadily working towards the version 1.0 release to be submitted for review to the &lt;a href="http://www.boost.org/" target="_blank"&gt;Boost C++ Library&lt;/a&gt; for wider availability. You can send in your library feedback and/or issues through the project's &lt;a href="https://github.com/cpp-netlib/cpp-netlib/issues" target="_blank"&gt;Github Issues&lt;/a&gt; page, where the maintainers of the project will then appropriately schedule the issues to be addressed for future release. If you don't have a Github account, you can subscribe to the &lt;a href="https://lists.sourceforge.net/lists/listinfo/cpp-netlib-devel" target="_blank"&gt;developer mailing list&lt;/a&gt; and send in your feature requests and participate in the discussion with the project developers as well.&lt;br /&gt;&lt;h3&gt;New in 0.8&lt;/h3&gt;The library features a new asynchronous HTTP server template to allow for handling requests asynchronously and allowing handlers to write back data to the connections. This has been one of the most requested features from users, to enable writing high-throughput and scalable web applications with cpp-netlib. Version 0.8 also comes with a simple and short (less than 200 lines of code) &lt;a href="https://github.com/cpp-netlib/cpp-netlib/blob/master/libs/network/example/http/fileserver.cpp" target="_blank"&gt;example of an HTTP server&lt;/a&gt; that has been benchmarked locally on an Intel Core 2 4400 with 2GB of RAM in Linux 64-bit to be able to serve a 7.4Kb file at roughly 3800 RPS. Over the network, it performs at a slightly lower rate of ~246 RPS on a home WLAN 802.11b/g network because of the communication costs -- sustained transfer rate of 1 megabyte per second -- but the performance profile of the application doesn't go higher than 5% CPU utilization at 1000 concurrent connections. Benchmarks were performed using Apache Bench (Apache AB).&lt;br /&gt;&lt;br /&gt;In 0.8 the library also now provides a means of checking whether a given asynchronous response object is ready with the full data requested by the client. In 0.7 the library introduced an active HTTP client implementation that returns asynchronously built responses. There used to be no way to check whether a given response is ready to be dealt with. Because of user feedback in the development of 0.8, the developers were able to implement a check for readiness which is now available in the 0.8 release.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;What's coming for 0.9&lt;/h3&gt;&lt;br /&gt;With 0.8 out the door, the cpp-netlib development team is ramping up development of 0.9 where users should look out for the following features:&lt;br /&gt;&lt;ul&gt; &lt;li&gt;Supporting Boost.IOStreams in the Client Request and Server Request/Response for message bodies. This will finally allow for sending over large amounts of data in files through the HTTP Client and Server implementations.&lt;/li&gt; &lt;li&gt;More Client-side HTTP Features, to support Cookie Management, Proxy Support.&lt;/li&gt; &lt;li&gt;Boost.Parameter-based APIs to allow for better flexibility of the client and server interfaces.&lt;/li&gt; &lt;li&gt;More HTTP Server-side convenience tools for Web Service development to make developing REST-ful web services easier, and the beginnings of a web development framework supporting templates, routes, and request handlers.&lt;/li&gt; &lt;li&gt;Initial ESTMP 1.0 support.&lt;/li&gt;&lt;/ul&gt;The project leaders are looking to get 0.9 just before the Christmas holiday season, at which time the 1.0 snapshot will also be submitted for review to the Boost C++ Library.&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Commercial Support and Sponsorship&lt;/h3&gt;&lt;br /&gt;&lt;a href="http://www.deanberris.com/" target="_blank"&gt;Dean Michael Berris&lt;/a&gt; is working on building a company around cpp-netlib to provide commercial support and custom development consulting done to make sure that the project keeps going. The cpp-netlib project will continue to be open source and the commercially supported version gets customers access to in-depth support for integrating cpp-netlib into their commercial applications. At this time, pricing on the support licensing as well as custom development rates are still being formulated.&lt;br /&gt;&lt;br /&gt;The project will also welcome corporate sponsorship to ensure that the contributors and developers get access to different platforms and resources to ensure that cpp-netlib will continue to be of high quality and will be available in as many platforms as possible. If you or your company may be interested in donating resources and/or sponsoring the development of a specific part of cpp-netlib, you can reach out through the developers mailing list or to the maintainers of the project.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;This article is cross-posted to &lt;a href="http://cplusplus-soup.com/" target="_blank"&gt;cplusplus-soup.com&lt;/a&gt;, &lt;a href="http://www.deanberris.com/" target="_blank"&gt;www.deanberris.com&lt;/a&gt;, and &lt;a href="http://cpp-netlib.blogspot.com/" target="_blank"&gt;cpp-netlib.blogspot.com&lt;/a&gt;.&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-2484455603569698417?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/2484455603569698417/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=2484455603569698417' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/2484455603569698417'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/2484455603569698417'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2010/11/c-network-library-v08-out-now.html' title='The C++ Network Library v0.8 Out Now!'/><author><name>Dean Michael Berris</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-ue1t_NbXMUk/AAAAAAAAAAI/AAAAAAAADZA/Wv4aIblr_mo/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-3668304490665441139</id><published>2009-07-12T10:43:00.003+02:00</published><updated>2009-07-12T11:31:58.079+02:00</updated><title type='text'>C++ Network Library and Trac</title><content type='html'>After a period of low activity, some problems are apparent.  Over the last few months there has been some activity on the mailing list from people who have expressed a will to get involved with development but for one reason or another have not been able to get started or make any progress.  I believe a lot of this has to do the fact that we're not maintaining an up-to-date schedule or roadmap, and its difficult for new contributors to find out where or how they should start.&lt;br /&gt;&lt;br /&gt;For this reason I have decided to add &lt;a href="http://trac.edgewall.org/"&gt;Trac&lt;/a&gt; to the sourceforge site.  The URL is:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://sourceforge.net/apps/trac/cpp-netlib/"&gt;http://sourceforge.net/apps/trac/cpp-netlib/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This has a number of advantages over what we currently have:&lt;br /&gt;&lt;br /&gt; * It allows us to set up milestones and components, to give a better overview of the current project progress&lt;br /&gt; * There's an integrated and intuitive source browser&lt;br /&gt; * There's a ticket tracker which allows tickets to be assigned to milestones and components&lt;br /&gt;&lt;br /&gt;While these are in some form available through sourceforge's project page, they're not cohesive in the same way as Trac is.&lt;br /&gt;&lt;br /&gt;If people are happy with this, then as a first step I'd urge you to start adding tickets and bug reports.  For those who want to do some development then contact the mailing list.&lt;br /&gt;&lt;br /&gt;I hope this is a step that allows us to better track progress and gives an incentive for new members to contribute.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-3668304490665441139?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/3668304490665441139/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=3668304490665441139' title='74 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/3668304490665441139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/3668304490665441139'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2009/07/c-network-library-and-trac.html' title='C++ Network Library and Trac'/><author><name>glynos</name><uri>http://www.blogger.com/profile/16161639738657629872</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>74</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-6524704648341927265</id><published>2008-10-20T19:57:00.002+02:00</published><updated>2008-10-20T20:00:54.764+02:00</updated><title type='text'>Release 0.3 available in Sourceforge</title><content type='html'>This post is to announce the release of version 0.3 of the C++ Network Library (with apologies for failing to announce the release of 0.2 on this blog ;).&lt;br /&gt;&lt;br /&gt;Updates include:&lt;br /&gt;&lt;br /&gt;* Improved documentation;&lt;br /&gt;* Additional constructors for http::client with arguments for following redirects and clearing the resolver cache;&lt;br /&gt;* Updated unit testing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-6524704648341927265?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/6524704648341927265/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=6524704648341927265' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/6524704648341927265'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/6524704648341927265'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2008/10/release-03-available-in-sourceforge.html' title='Release 0.3 available in Sourceforge'/><author><name>glynos</name><uri>http://www.blogger.com/profile/16161639738657629872</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-9066606812270492552</id><published>2008-08-26T08:17:00.002+02:00</published><updated>2008-08-26T08:22:07.849+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='announcement'/><category scheme='http://www.blogger.com/atom/ns#' term='release'/><title type='text'>Release 0.1 Now Available in Sourceforge</title><content type='html'>This is just a quick note to let the world know that the C++ Network Library now has an 0.1 release available from the &lt;a href="http://sourceforge.net/projects/cpp-netlib"&gt;Sourceforge project site&lt;/a&gt;. This 0.1 release includes:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Messaging Framework&lt;/li&gt;&lt;br /&gt;&lt;li&gt;HTTP 1.0 Client with GET, PUT, DELETE, POST, and HEAD suppport&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Initial Unit Tests&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;This is an early Alpha release which does not have enough documentation. The 0.2 release is scheduled Monday (September 1st, 2008) which should include HTML documentation and more changes.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;Please join the mailing list and try out the software and be part of the development of the library!&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-9066606812270492552?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/9066606812270492552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=9066606812270492552' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/9066606812270492552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/9066606812270492552'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2008/08/release-01-now-available-in-sourceforge.html' title='Release 0.1 Now Available in Sourceforge'/><author><name>Dean Michael Berris</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-ue1t_NbXMUk/AAAAAAAAAAI/AAAAAAAADZA/Wv4aIblr_mo/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-4827106046978601120</id><published>2008-08-14T22:15:00.002+02:00</published><updated>2008-08-14T22:23:17.883+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='discussion'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Open Thread: Your Pet Peeves</title><content type='html'>I'm writing this post to ask potential users of the C++ Network Library what their worst experiences are with existing networking libraries, and what you'd want to see (or not see) in a new network library. I personally have my motivation for working on a new network library in C++ because of past (and present) experiences. These personal motivations are already pretty much documented in the rationale for the library (and the architecture document) but I'd like to know what people think should be the other goals of the C++ Network Library.&lt;br /&gt;&lt;br /&gt;Currently, I'm focusing my time implementing an HTTP Client with the most features useful to me (and the new generation of web-aware software) that I'm having tunnel-vision as to what I'm supposed to be doing and how I'm supposed to be doing it. Knowing from the audience what they would want to see next would be a nice refresher to let the team know what sort of thing we should be working on in the project.&lt;br /&gt;&lt;br /&gt;So what are your pet peeves (and/or worst experiences) with existing networking libraries that you want addressed in a new network library? Let us know!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-4827106046978601120?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/4827106046978601120/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=4827106046978601120' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/4827106046978601120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/4827106046978601120'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2008/08/open-thread-your-pet-peeves.html' title='Open Thread: Your Pet Peeves'/><author><name>Dean Michael Berris</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-ue1t_NbXMUk/AAAAAAAAAAI/AAAAAAAADZA/Wv4aIblr_mo/s512-c/photo.jpg'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-3586382164506733828</id><published>2008-08-11T10:01:00.002+02:00</published><updated>2008-08-11T10:09:24.307+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='http'/><category scheme='http://www.blogger.com/atom/ns#' term='contribute'/><category scheme='http://www.blogger.com/atom/ns#' term='c++'/><category scheme='http://www.blogger.com/atom/ns#' term='announcement'/><title type='text'>HTTP Client: Supports GET, HEAD, POST, PUT, and DELETE</title><content type='html'>After a long time coming, the C++ Network Library now supports the standard HTTP commands that modern clients need. In the branch http_integration, I've been able to implement a synchronous HTTP Client implementation that supports the major HTTP commands.&lt;br /&gt;&lt;br /&gt;What's left to be done is to write more unit tests and actually use it in real-life applications. Fast approaching is an asynchronous client implementation, and eventually a 1.0 alpha.&lt;br /&gt;&lt;br /&gt;We need help in the following areas:&lt;br /&gt;&lt;br /&gt;- Testing&lt;br /&gt;- Debugging&lt;br /&gt;- Documentation&lt;br /&gt;&lt;br /&gt;If you want to be part of the project, please don't hesitate to join us in the &lt;a href="https://lists.sourceforge.net/lists/listinfo/cpp-netlib-devel"&gt;C++ Network Library Developers mailing list&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-3586382164506733828?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/3586382164506733828/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=3586382164506733828' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/3586382164506733828'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/3586382164506733828'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2008/08/http-client-supports-get-head-post-put.html' title='HTTP Client: Supports GET, HEAD, POST, PUT, and DELETE'/><author><name>Dean Michael Berris</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-ue1t_NbXMUk/AAAAAAAAAAI/AAAAAAAADZA/Wv4aIblr_mo/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-4957775911911689653</id><published>2007-10-09T16:21:00.000+02:00</published><updated>2007-10-09T16:27:43.852+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='http'/><category scheme='http://www.blogger.com/atom/ns#' term='contribute'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>HTTP 1.0 Implementation now in trunk!</title><content type='html'>Okay, this will be quick.&lt;br /&gt;&lt;br /&gt;Yesterday I was able to come up with a really crude yet functional HTTP 1.0 client. This is already available in the subversion repository, and ready for more unit tests to make sure that we can cover more cases before shipping. Help would be definitely appreciated in terms of writing unit tests and refactoring/improving the URI parser and the client implementation.&lt;br /&gt;&lt;br /&gt;More information to come in the next few days as I continue developing the HTTP implementation.&lt;br /&gt;&lt;br /&gt;So if you have time to spare and brain cycles to donate, we'd definitely appreciate the help!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-4957775911911689653?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/4957775911911689653/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=4957775911911689653' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/4957775911911689653'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/4957775911911689653'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2007/10/http-10-implementation-now-in-trunk.html' title='HTTP 1.0 Implementation now in trunk!'/><author><name>Dean Michael Berris</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-ue1t_NbXMUk/AAAAAAAAAAI/AAAAAAAADZA/Wv4aIblr_mo/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-8849993931343364696</id><published>2007-08-19T13:53:00.000+02:00</published><updated>2007-08-19T13:56:40.729+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='requirements'/><category scheme='http://www.blogger.com/atom/ns#' term='c++'/><category scheme='http://www.blogger.com/atom/ns#' term='wiki'/><category scheme='http://www.blogger.com/atom/ns#' term='specification'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Software requirements</title><content type='html'>&lt;p&gt;I've put up the beginnings of &lt;a href="http://cpp-netlib.wiki.sourceforge.net/Software+Requirements+Specification"&gt;software requirements specification&lt;/a&gt; on the C++ Network wiki.  I hope this could spark a bit of debate and we can make some more progress when its decided exactly what networking features we'd like to add to C++.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-8849993931343364696?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/8849993931343364696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=8849993931343364696' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/8849993931343364696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/8849993931343364696'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2007/08/software-requirements.html' title='Software requirements'/><author><name>glynos</name><uri>http://www.blogger.com/profile/16161639738657629872</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-5098758752918627769</id><published>2007-08-01T13:33:00.000+02:00</published><updated>2007-08-01T14:01:24.100+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='contribute'/><category scheme='http://www.blogger.com/atom/ns#' term='announcement'/><category scheme='http://www.blogger.com/atom/ns#' term='architecture'/><title type='text'>Project Co-ordination</title><content type='html'>&lt;p&gt;The first announcement I can make is that I have installed myself (in a benevolent 3rd world dictator kind of way) as release manager/project co-ordinator.  This will free Dean to continue outlining his vision with the &lt;a href="http://cpp-netlib.wiki.sourceforge.net/Architectural+Documentation"&gt;architecture documentation&lt;/a&gt; and I will hope to be able to encourage some people to contribute ideas, time or other resources to this project.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If you want to contribute, take a look at our &lt;a href="http://sourceforge.net/mailarchive/forum.php?forum_name=cpp-netlib-devel"&gt;mailing list&lt;/a&gt; and we'll be interested to hear what your thoughts are.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-5098758752918627769?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/5098758752918627769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=5098758752918627769' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/5098758752918627769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/5098758752918627769'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2007/08/project-co-ordination.html' title='Project Co-ordination'/><author><name>glynos</name><uri>http://www.blogger.com/profile/16161639738657629872</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2721065290360761967.post-1133287728551425479</id><published>2007-07-30T19:31:00.000+02:00</published><updated>2007-07-30T20:47:25.171+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='c++'/><category scheme='http://www.blogger.com/atom/ns#' term='boost'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Networking in C++</title><content type='html'>&lt;p&gt;In the interests of promoting discussion, and taking a cue from the success of &lt;a href="http://improving-boost-docs.blogspot.com/"&gt;Improving Boost Documents&lt;/a&gt;, this blog has been set up to show-case networking in C++, and to provide feedback for the &lt;a href="http://cpp-netlib.wiki.sourceforge.net/"&gt;cpp-netlib&lt;/a&gt; community.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The aim of cpp-netlib is to provide a library with clean, type-safe interface for networking using modern C++ techniques.  Eventually, it is hoped that it will become a part of the Boost C++ Libraries.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2721065290360761967-1133287728551425479?l=cpp-netlib.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cpp-netlib.blogspot.com/feeds/1133287728551425479/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2721065290360761967&amp;postID=1133287728551425479' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/1133287728551425479'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2721065290360761967/posts/default/1133287728551425479'/><link rel='alternate' type='text/html' href='http://cpp-netlib.blogspot.com/2007/07/networking-in-c.html' title='Networking in C++'/><author><name>glynos</name><uri>http://www.blogger.com/profile/16161639738657629872</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
