rajan
rajan

Reputation: 23

HTTP PUT method implementation in C

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

Can anyone help me out?

Upvotes: 2

Views: 2634

Answers (1)

mmmmmm
mmmmmm

Reputation: 32651

Look at libcurl especially the example for http put

Or libneon. PUT is in ne_basic.c.

Upvotes: 4

Related Questions