Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-ares-solaris11-sparc Build #4344

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision37cecfc7b91118f116cf16af8f50a18b15d00d51
Got Revision37cecfc7b91118f116cf16af8f50a18b15d00d51
Changes1 change

BuildSlave:

unstable11s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris11-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 28 mins, 34 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 4344 Build
codebase Build
got_revision 37cecfc7b91118f116cf16af8f50a18b15d00d51 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 37cecfc7b91118f116cf16af8f50a18b15d00d51 Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing

Timing:

StartMon Aug 11 23:32:52 2025
EndTue Aug 12 00:27:20 2025
Elapsed54 mins, 28 secs

All Changes:

:

  1. Change #242719

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 11 Aug 2025 23:28:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 37cecfc7b91118f116cf16af8f50a18b15d00d51

    Comments

    websocket: support CURLOPT_READFUNCTION
    Add support for CURLOPT_READFUNCTION with WebSocket urls when *not* in
    connect-only mode, e.g. when using curl_multi_perform.
    
    Install the callback function and set CURLOPT_UPLOAD. Return
    CURL_READFUNC_PAUSE when having nothing more to send and unpause the
    transfer when more data is ready.
    
    This will send the read bytes in a WebSocket BINARY frame.
    
    Add support for this mode in the pytest "ws_data" client and have all
    tests run in 'curl_ws_send/recv' and 'peform' mode as well.
    
    Add `curl_ws_start_frame()`. Document, cover in libcurl-ws.md and
    explain the READFUNCTION mode for websockets.
    
    Add example `websocket-updown` for this.
    
    Closes #17683

    Changed files

    • docs/examples/.gitignore
    • docs/examples/Makefile.inc
    • docs/examples/websocket-updown.c
    • docs/libcurl/Makefile.inc
    • docs/libcurl/curl_ws_send.md
    • docs/libcurl/curl_ws_start_frame.md
    • docs/libcurl/libcurl-ws.md
    • docs/libcurl/opts/CURLOPT_WS_OPTIONS.md
    • include/curl/websockets.h
    • lib/http.c
    • lib/libcurl.def
    • lib/ws.c
    • scripts/singleuse.pl
    • tests/data/test1135
    • tests/data/test2300
    • tests/http/test_20_websockets.py
    • tests/libtest/cli_ws_data.c