<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csoap/examples/csoap, branch r1_1_0</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>ported logging function to a seperate file (nanohttp-logging.*)</title>
<updated>2006-07-09T16:24:18+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2006-07-09T16:24:18+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=8e94d40e90b5ed006090af64ff7017a2d4f1a802'/>
<id>8e94d40e90b5ed006090af64ff7017a2d4f1a802</id>
<content type='text'>
and renamed all logging functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and renamed all logging functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Build in separate directory</title>
<updated>2006-03-15T15:13:41+00:00</updated>
<author>
<name>m0gg</name>
</author>
<published>2006-03-15T15:13:41+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=d7b1b7794bce582d6cba6a357c30a069baabd9b4'/>
<id>d7b1b7794bce582d6cba6a357c30a069baabd9b4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Buildsystem cleanup</title>
<updated>2006-03-06T13:28:21+00:00</updated>
<author>
<name>m0gg</name>
</author>
<published>2006-03-06T13:28:21+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=7a47bd6164a6d1806af7557daedb2be5db064140'/>
<id>7a47bd6164a6d1806af7557daedb2be5db064140</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- removes a memleak in examples/csoap/simpleserver.c say_hello</title>
<updated>2006-02-27T22:26:01+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2006-02-27T22:26:01+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=b73c5d785a71edade3ba473cbb13ec57aaeec7ed'/>
<id>b73c5d785a71edade3ba473cbb13ec57aaeec7ed</id>
<content type='text'>
- adds various malloc error messages
- does some libcsoap/*.c #include fixups
- removes a memleak in libcsoap/soap-server.c soap_server_entry
- removes the double free of SoapCtx-&gt;action (again!!!)
- rewrites more or less cleanly hsocket_close
- adds volatile keywords for thread shared data items
- _httpd_parse_arguments cleanup
- rwerites the _httpd_connection initialization
- adds a call to pthread_attr_destroy in httpd_session_main
- fixes a wrong loop initialization in _httpd_wait_for_emtpy_conn
- fixes a memleak in httpd_session_main (req)
- more sophisticated httpd_server example
- HTTP authentication SEGfault without password fixed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- adds various malloc error messages
- does some libcsoap/*.c #include fixups
- removes a memleak in libcsoap/soap-server.c soap_server_entry
- removes the double free of SoapCtx-&gt;action (again!!!)
- rewrites more or less cleanly hsocket_close
- adds volatile keywords for thread shared data items
- _httpd_parse_arguments cleanup
- rwerites the _httpd_connection initialization
- adds a call to pthread_attr_destroy in httpd_session_main
- fixes a wrong loop initialization in _httpd_wait_for_emtpy_conn
- fixes a memleak in httpd_session_main (req)
- more sophisticated httpd_server example
- HTTP authentication SEGfault without password fixed
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed C++ style programming to C style</title>
<updated>2006-02-08T11:37:51+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2006-02-08T11:37:51+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=c064ba2e421fbeaebc38d92493e9eaf33a5feac7'/>
<id>c064ba2e421fbeaebc38d92493e9eaf33a5feac7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>the attached patches address the following issues:</title>
<updated>2006-02-08T11:13:13+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2006-02-08T11:13:13+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=c4286ea5287279836c5ef49a06153db95429bfe6'/>
<id>c4286ea5287279836c5ef49a06153db95429bfe6</id>
<content type='text'>
* query the port the server is listening on
{soap_server,httpd}_get_port
* the possibility to add a default service via httpd_register_default
* remove some compiler warnings (on FreeBSD pthread_t is a pointer to
  a struct pthread, on Linux it is a (unsigned?) long int)

  tschuess,

   Heiko
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* query the port the server is listening on
{soap_server,httpd}_get_port
* the possibility to add a default service via httpd_register_default
* remove some compiler warnings (on FreeBSD pthread_t is a pointer to
  a struct pthread, on Linux it is a (unsigned?) long int)

  tschuess,

   Heiko
</pre>
</div>
</content>
</entry>
<entry>
<title>changed to 'press ctrl-c to ...'</title>
<updated>2006-01-11T09:18:17+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2006-01-11T09:18:17+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=1323060c8671a409f6e701124c0667c646f008c1'/>
<id>1323060c8671a409f6e701124c0667c646f008c1</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 -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>removed -lssl and added</title>
<updated>2006-01-06T16:13:33+00:00</updated>
<author>
<name>snowdrop</name>
</author>
<published>2006-01-06T16:13:33+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/csoap.git/commit/?id=0fe2f6c2ee30eedb19cb10c98b0f832b069988e2'/>
<id>0fe2f6c2ee30eedb19cb10c98b0f832b069988e2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
