<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csoap/libcsoap, branch before_ssl_api_intro</title>
<subtitle>A portable and simple client/server C API for SOAP</subtitle>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/'/>
<entry>
<title>indent with 'indent -nut -bli0 -fca -npcs' command</title>
<updated>2006-01-10T11:29:04+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2006-01-10T11:29:04+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=07c7c81772c4b60b7980880847f3b21455a0f3c9'/>
<id>07c7c81772c4b60b7980880847f3b21455a0f3c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>indent with 'indent -nut -bli0 -fca' command</title>
<updated>2006-01-10T11:21:55+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2006-01-10T11:21:55+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=c24e5b5135d745098ea6e5c4664a88ada6b99225'/>
<id>c24e5b5135d745098ea6e5c4664a88ada6b99225</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pathed stuf from mailinglist after 1.0.4rc1</title>
<updated>2005-12-19T14:18:26+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2005-12-19T14:18:26+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=8684b8cf790b76fc68e2cc2b7f797c505c70ee2f'/>
<id>8684b8cf790b76fc68e2cc2b7f797c505c70ee2f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>integrated with ssl (https) capability</title>
<updated>2005-12-19T14:06:15+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2005-12-19T14:06:15+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=84693bb5f792e6d6accd1ad2e81fe6baeb4f4ea1'/>
<id>84693bb5f792e6d6accd1ad2e81fe6baeb4f4ea1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>patched from malinglist</title>
<updated>2005-07-30T12:43:12+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2005-07-30T12:43:12+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=c273199eca81d69caee65a8570c61e9437d69ef9'/>
<id>c273199eca81d69caee65a8570c61e9437d69ef9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes some memory leaks. Patch from mailinglist 27.07.05 by Peter Boncz</title>
<updated>2005-07-27T21:01:10+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2005-07-27T21:01:10+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=4f574fdea76b48e2188205fcc9e7b1d9dc1f3859'/>
<id>4f574fdea76b48e2188205fcc9e7b1d9dc1f3859</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Changes of Menzo</title>
<updated>2005-07-27T07:45:40+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2005-07-27T07:45:40+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=d7c4593ff2b4c55fdc33676e20ecafff1c87e62c'/>
<id>d7c4593ff2b4c55fdc33676e20ecafff1c87e62c</id>
<content type='text'>
nanohttp/nanohttp-client.c and nanohttp/nanohttp-client.h
         added httpc_close_free, a variant of httpc_free which
         explicitly  asks to close the socket.
         Otherwise after a number of client/server interactions we get
         socket error 24 (Too many open files).

libcsoap/soap-client.c
         call httpc_close_free instead of httpc_free

nanohttp/nanohttp-socket.c
         in hsocket_close call shutdown with SHUT_RDWR instead of 1
	 (SHUT_WR). Otherwise after a
         number of client/server interactions the shutdown call doesn't
	 return anymore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
nanohttp/nanohttp-client.c and nanohttp/nanohttp-client.h
         added httpc_close_free, a variant of httpc_free which
         explicitly  asks to close the socket.
         Otherwise after a number of client/server interactions we get
         socket error 24 (Too many open files).

libcsoap/soap-client.c
         call httpc_close_free instead of httpc_free

nanohttp/nanohttp-socket.c
         in hsocket_close call shutdown with SHUT_RDWR instead of 1
	 (SHUT_WR). Otherwise after a
         number of client/server interactions the shutdown call doesn't
	 return anymore.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch from mailinglist</title>
<updated>2005-05-27T19:28:04+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2005-05-27T19:28:04+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=232ff6e28d1fce08472a2f7a965d83d3e008d84c'/>
<id>232ff6e28d1fce08472a2f7a965d83d3e008d84c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>included the check for errcode = 200</title>
<updated>2005-04-18T20:52:26+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2005-04-18T20:52:26+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=3cb6ed195c1c2a3e45014e31f2d923eabd88829f'/>
<id>3cb6ed195c1c2a3e45014e31f2d923eabd88829f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>dos2unix</title>
<updated>2004-11-02T23:09:19+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2004-11-02T23:09:19+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=402e8748593a42cf6d42fda772f207e3e9300a3e'/>
<id>402e8748593a42cf6d42fda772f207e3e9300a3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
