tags:

views:

115

answers:

1

I need to implement the HTTP PUT method in C using TCP socket.

Can anyone help me out?

+3  A: 

Look at libcurl especially the example for http put

Or libneon. PUT is in ne_basic.c.

Mark