Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-01 | anyauthput: remove unused code | Marcel Raad | |
The definition of TRUE was introduced in 4a728747e6f8845e500910e397dfc99aaf4a7984 and is not used anymore since e664cd5826d43930fcc5b5dbaedbec94af33184b. The usage of intptr_t was removed in 32e38b8f42477cf5ce3c3fef2fcc9db82f7fb7be. | |||
2017-05-01 | examples: fixed too long line and too long string warnings | Dan Fandrich | |
2017-04-30 | examples: declare TU-local variables static | Marcel Raad | |
This fixes missing-variable-declarations warnings when building with clang. | |||
2017-04-27 | cookie_interface.c: changed the other domain to example.com too | Daniel Stenberg | |
2017-04-27 | cookie_interface.c: fix cookie domain so the example works | Daniel Stenberg | |
2017-04-25 | examples: ftpuploadfrommem.c | Daniel Stenberg | |
Uploads data to an FTP site, directly from memory. Closes #1451 | |||
2017-03-28 | examples/fopen: checksrc compliance | Jay Satiro | |
2017-03-26 | spelling fixes | klemens | |
Closes #1356 | |||
2017-03-23 | asiohiper: make sure socket is open in event_cb | Edward Kimmel | |
Send curl_socket_t to event_cb and make sure it hasn't been closed yet. Closes https://github.com/curl/curl/pull/1318 | |||
2017-03-21 | examples: comment typos in http2 examples | Daniel Stenberg | |
2017-02-20 | examples/multi-uv: checksrc compliance | Jay Satiro | |
2017-02-18 | docs: fix timeout handling in multi-uv example | Michael Kaufmann | |
2017-02-09 | examples/multithread.c: link to our multi-thread docs | Daniel Stenberg | |
... instead of the OpenSSL mutex page. | |||
2017-01-18 | usercertinmem.c: improve the short description | Daniel Stenberg | |
2017-01-08 | examples: make the C++ examples follow our code style too | Daniel Stenberg | |
At least mostly, not counting // comments. | |||
2017-01-08 | asiohiper: improved socket handling | Aulddays | |
libcurl requires CURLMOPT_SOCKETFUNCTION to KEEP watching socket events and notify back. Modify event_cb() to continue watching events when fired. Fixes #1191 Closes #1192 Fixed-by: Mingliang Zhu | |||
2016-12-18 | curl_easy_recv: Improve documentation and example program | Michael Kaufmann | |
Follow-up to 82245ea: Fix the example program sendrecv.c (handle CURLE_AGAIN, handle incomplete send). Improve the documentation for curl_easy_recv() and curl_easy_send(). Reviewed-by: Frank Meier Assisted-by: Jay Satiro See https://github.com/curl/curl/pull/1134 | |||
2016-12-14 | checksrc: warn for assignments within if() expressions | Daniel Stenberg | |
... they're already frowned upon in our source code style guide, this now enforces the rule harder. | |||
2016-12-13 | checksrc: stricter no-space-before-paren enforcement | Daniel Stenberg | |
In order to make the code style more uniform everywhere | |||
2016-11-24 | checksrc: move open braces to comply with function declaration style | Daniel Stenberg | |
2016-11-24 | checksrc: white space edits to comply to stricter checksrc | Daniel Stenberg | |
2016-11-24 | checksrc: code style: use 'char *name' style | Daniel Stenberg | |
2016-11-08 | examples/fileupload.c: fclose the file as well | Daniel Stenberg | |
2016-11-07 | s/cURL/curl | Daniel Stenberg | |
We're mostly saying just "curl" in lower case these days so here's a big cleanup to adapt to this reality. A few instances are left as the project could still formally be considered called cURL. | |||
2016-11-03 | docs: shorten and simplify the top comment in multi-uv.c | Daniel Stenberg | |
and change URL to use https | |||
2016-11-03 | docs: handle CURL_POLL_INOUT in multi-uv example | Andrei Sedoi | |
2016-11-03 | docs: multi-uv: don't use CURLMsg after cleanup | Andrei Sedoi | |
2016-11-03 | docs: remove unused variables in multi-uv example | Andrei Sedoi | |
2016-10-27 | docs: fix req->data in multi-uv example | Andrei Sedoi | |
Closes #1088 | |||
2016-09-18 | examples/imap-append: Set size of data to be uploaded | Jay Satiro | |
Prior to this commit this example failed with error 'Cannot APPEND with unknown input file size'. Bug: https://github.com/curl/curl/issues/1008 Reported-by: lukaszgn@users.noreply.github.com Closes https://github.com/curl/curl/pull/1011 | |||
2016-04-19 | make/checksrc: use $srcdir, not $top_srcdir | Daniel Stenberg | |
2016-04-18 | checksrc/makefile.am: use $top_srcdir to find source files | Daniel Stenberg | |
... to properly support out of source tree builds. | |||
2016-04-03 | docs/examples: remove spurious white spaces all over | Daniel Stenberg | |
... to please the new, slightly picker, checksrc.pl | |||
2016-03-06 | curlx.c: use more curl style code | Daniel Stenberg | |
2016-02-17 | examples/make: add 'checksrc' target | Daniel Stenberg | |
2016-02-17 | 10-at-a-time: typecast the argument passed to sleep() | Daniel Stenberg | |
2016-02-17 | externalsocket.c: fix compiler warning for fwrite return type | Daniel Stenberg | |
2016-02-17 | anyauthput.c: fix compiler warnings | Daniel Stenberg | |
2016-02-17 | simplessl.c: warning: while with space | Daniel Stenberg | |
2016-02-17 | curlx.c: i2s_ASN1_IA5STRING() clashes with an openssl function | Daniel Stenberg | |
Reported-By: Gisle Vanem | |||
2016-02-11 | examples: fix some compiler warnings | Daniel Stenberg | |
2016-02-11 | simplessl.c: fix my breakage | Daniel Stenberg | |
2016-02-11 | examples: adhere to curl code style | Daniel Stenberg | |
All plain C examples now (mostly) adhere to the curl code style. While they are only examples, they had diverted so much and contained all sorts of different mixed code styles by now. Having them use a unified style helps users and readability. Also, as they get copy-and-pasted widely by users, making sure they're clean and nice is a good idea. 573 checksrc warnings were addressed. | |||
2016-02-11 | examples/cookie_interface.c: add cleanup call | Daniel Stenberg | |
cleaning up handles is a good idea as we leak memory otherwise Also, line wrapped before 80 columns. | |||
2016-02-06 | examples/asiohiper: Avoid function name collision on Windows | Gisle Vanem | |
closesocket => close_socket Winsock already has the former. Bug: https://curl.haxx.se/mail/lib-2016-02/0016.html | |||
2016-02-06 | examples/htmltitle: Use _stricmp on Windows | Gisle Vanem | |
Bug: https://curl.haxx.se/mail/lib-2016-02/0017.html | |||
2016-02-02 | URLs: change more http to https | Viktor Szakats | |
2016-02-03 | URLs: change all http:// URLs to https:// | Daniel Stenberg | |
2016-01-27 | getredirect.c: fix variable name | Daniel Stenberg | |
Reported-by: Bernard Spil | |||
2016-01-27 | examples/Makefile.inc: specify programs without .c! | Daniel Stenberg | |