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

Builder curl-unthreaded-solaris11-i386 Build #5268

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision8ed285f06deedf02fc407f6eed1892301e43004a
Got Revision8ed285f06deedf02fc407f6eed1892301e43004a
Changes2 changes

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git update ( 15 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 55 mins, 32 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-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 5268 Build
codebase Build
got_revision 8ed285f06deedf02fc407f6eed1892301e43004a Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 8ed285f06deedf02fc407f6eed1892301e43004a Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Michael Kaufmann
  2. Stefan Eissing

Timing:

StartMon Jun 22 09:16:02 2026
EndMon Jun 22 11:29:53 2026
Elapsed2 hrs, 13 mins, 50 secs

All Changes:

:

  1. Change #272050

    Category curl
    Changed by Michael Kaufmann <mailohnoyoudont@michael-kaufmann.ch>
    Changed at Mon 22 Jun 2026 08:53:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 810d9535e17b9e1468013493ddd65bd37d6a967a

    Comments

    proxy: fix automatic tunnel mode with "connect to host"
    Fix a regression in curl 8.21.0-rc3: Check whether the host and the "connect
    to host" are equal before initializing the proxy. If they are equal, switching
    to tunnel mode is not necessary.
    
    Follow-up to 73daec6
    
    Closes #22110

    Changed files

    • lib/url.c
    • tests/data/test2050
    • tests/data/test2055
  2. Change #272051

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 22 Jun 2026 08:54:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8ed285f06deedf02fc407f6eed1892301e43004a

    Comments

    websockets: buffer ugprade data at connection level
    When the HTTP Upgrade to websockets already carries ws frame data,
    buffer that data at connection level and not in the ws decoder.
    
    Adding new cfilter `cf_recvbuf` to buffer a fixed amont of data
    to be received later. When the data is received, the filter
    passes further recv call through to its subfilter.
    
    Fixes #22107
    Reported-by: sideshowbarker on github
    Closes #22111

    Changed files

    • lib/Makefile.inc
    • lib/cf-recvbuf.c
    • lib/cf-recvbuf.h
    • lib/cfilters.c
    • lib/cfilters.h
    • lib/curl_trc.c
    • lib/ws.c