Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-25 | examples/threaded-ssl: mention that this is for openssl before 1.1 | Daniel Stenberg | |
2017-08-16 | examples/ftpuploadresume: checksrc compliance | Jay Satiro | |
2017-08-14 | examples/ftpuploadresume.c: use portable code | Daniel Stenberg | |
... converted from the MS specific _snscanf() | |||
2017-06-16 | Makefile.m32: enable -W for MinGW32 build | Marcel Raad | |
The configure-based build also has this in addition to -Wall. Closes https://github.com/curl/curl/pull/1578 | |||
2017-06-14 | includes: remove curl/curlbuild.h and curl/curlrules.h | Daniel Stenberg | |
Rely entirely on curl/system.h now. Introduced in Aug 2008 with commit 14240e9e109f. Now gone. Fixes #1456 | |||
2017-06-08 | examples/multi-uv.c: fix deprecated symbol | Ryuichi KAWAMATA | |
Closes #1557 | |||
2017-06-01 | typecheck-gcc.h: check CURLINFO_CERTINFO | Daniel Stenberg | |
... and update the certinfo.c example accordingly. Fixes https://github.com/curl/curl/issues/846 | |||
2017-05-31 | examples/externalsocket.c: s/closesocket/closecb | Daniel Stenberg | |
... since closesocket is a function in WinSock. Reported-by: Marcel Raad Bug: https://github.com/curl/curl/commit/55fcb8485914700132fd1854c9509b66c955efbe#co mmitcomment-22347818 | |||
2017-05-31 | examples/sampleconv.c: indent changes, made callbacks static | Daniel Stenberg | |
2017-05-31 | example/externalsocket.c: make it use CLOSESOCKETFUNCTION too | Daniel Stenberg | |
2017-05-24 | examples: fix Wimplicit-fallthrough warnings | Marcel Raad | |
This is contained in -Wextra with GCC 7. | |||
2017-05-19 | ghiper.c/hiperfifo.c: add comment about missing timer functionality | Daniel Stenberg | |
It takes someone to read up on the APIs of these libraries to figure out how to do this correctly. Reported-by: Michael Kaufmann Closes #1253 | |||
2017-05-19 | asiohiper.cpp / evhiperfifo.c: deal with negative timerfunction input | Daniel Stenberg | |
That means delete the timer. Reported-by: Michael Kaufmann Ref: #1253 | |||
2017-05-11 | cookie_interface: fix -Wcomma warning | Marcel Raad | |
clang 5.0 complains: possible misuse of comma operator here [-Wcomma] | |||
2017-05-07 | sendrecv: fix MinGW-w64 warning | Marcel Raad | |
The first argument to select is an int, while curl_socket_t is unsigned long long when using WinSock. It's ignored anyway [1]. [1] https://msdn.microsoft.com/en-us/library/windows/desktop/ms740141.aspx | |||
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 | |