Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-06 | examples: move threaded-shared-conn.c to the "complicated" ones | Daniel Stenberg | |
... due it relying on pthreads to link. | |||
2017-12-05 | threaded-shared-conn.c: fixed typo in commenta | Daniel Stenberg | |
2017-12-05 | threaded-shared-conn.c: new example | Daniel Stenberg | |
2017-12-01 | examples/xmlstream.c: don't switch off CURL_GLOBAL_SSL | Daniel Stenberg | |
Reported-by: Dima Tisnek | |||
2017-11-23 | examples/rtsp: clear RANGE again after use | Daniel Stenberg | |
Fixes #2106 Reported-by: youngchopin on github | |||
2017-11-18 | examples/curlx: Fix code style | fmmedeiros | |
- Add braces around multi-line if statement. Closes https://github.com/curl/curl/pull/2096 | |||
2017-11-09 | examples: add shared-connection-cache | Daniel Stenberg | |
2017-11-09 | test1554: verify connection cache sharing | Daniel Stenberg | |
2017-10-03 | examples: bring back curl_formadd-using examples | Daniel Stenberg | |
... now with a -formadd suffix. While the new mime API is introduced in 7.56.0 we must acknowledge that lots of users can't upgrade their curl versions immediately. | |||
2017-09-22 | form/mime: field names are not allowed to contain zero-valued bytes. | Patrick Monnerat | |
Also suppress length argument of curl_mime_name() (names are always zero-terminated). | |||
2017-09-21 | examples/post-callback: use long for CURLOPT_POSTFIELDSIZE | Marcel Raad | |
Otherwise, typecheck-gcc.h warns on MinGW-w64. | |||
2017-09-12 | code style: use space after semicolon | Daniel Stenberg | |
2017-09-11 | code style: use spaces around pluses | Daniel Stenberg | |
2017-09-11 | code style: use spaces around equals signs | Daniel Stenberg | |
2017-09-05 | examples/mime: minor example code fixes | Viktor Szakats | |
2017-09-04 | mime: use CURL_ZERO_TERMINATED in examples | Viktor Szakats | |
and some minor whitespace fixes | |||
2017-09-04 | examples/post-callback: stop returning one byte at a time | Daniel Stenberg | |
... since people copy and paste code from this example and thus they get an inefficient POST operation without a good reason and sometimes without understanding why. Instead this now returns as much data as possible. | |||
2017-09-03 | mime: remove support "-" stdin pseudo-file name in curl_mime_filedata(). | Patrick Monnerat | |
This feature is badly supported in Windows: as a replacement, a caller has to use curl_mime_data_cb() with fread, fseek and possibly fclose callbacks to process opened files. The cli tool and documentation are updated accordingly. The feature is however kept internally for form API compatibility, with the known caveats it always had. As a side effect, stdin size is not determined by the cli tool even if possible and this results in a chunked transfer encoding. Test 173 is updated accordingly. | |||
2017-09-02 | mime: tests and examples. | Patrick Monnerat | |
Additional mime-specific tests. Existing tests updated to reflect small differences (Expect: 100-continue, data size change due to empty lines, etc). Option -F headers= keyword added to tests. test1135 disabled until the entry point order change is resolved. New example smtp-mime. Examples postit2 and multi-post converted from form API to mime API. | |||
2017-08-30 | examples/sslbackend.c: fix failure of 'make checksrc' | Kamil Dudka | |
./sslbackend.c:58:3: warning: else after closing brace on same line (BRACEELSE) } else if(isdigit(*name)) { ^ ./sslbackend.c:62:3: warning: else after closing brace on same line (BRACEELSE) } else ^ | |||
2017-08-28 | docs/examples: demonstrate how to select SSL backends | Johannes Schindelin | |
The newly-introduced curl_global_sslset() function deserves to be show-cased. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | |||
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 | |