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

Builder curl-unthreaded-solaris10-sparc Build #13914

Build In Progress:

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision40d57c9f588c42ed3f75fe0ba9b12aa18170a404
Changes3 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git  
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13914 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 40d57c9f588c42ed3f75fe0ba9b12aa18170a404 Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Jay Satiro
  3. Stefan Eissing

Timing:

StartMon Apr 13 20:11:01 2026
Elapsed1 hrs, 39 mins, 17 secs

All Changes:

:

  1. Change #264254

    Category curl
    Changed by Jay Satiro <raysatiroohnoyoudont@yahoo.com>
    Changed at Mon 13 Apr 2026 08:12:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 70bb0db76720c152f6a55bbe12cf162b55cb105b

    Comments

    schannel: increase renegotiation timeout to 60 seconds
    Prior to this change the timeout was 7 seconds but that is too short for
    enhanced-security users that have to fill out an interactive prompt on
    Schannel renegotiation (PIN, smart card, etc).
    
    Reported-by: Tim Omta
    
    Fixes https://github.com/curl/curl/issues/21270
    Closes https://github.com/curl/curl/pull/21291

    Changed files

    • lib/vtls/schannel.c
  2. Change #264297

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 13 Apr 2026 14:34:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ec445fc5951d37d22ee6b22178bd175c4d0abe48

    Comments

    setopt: move CURLOPT_CURLU
    To fix cast from 'char *' to 'CURLU *' (aka 'struct Curl_URL *')
    increases required alignment from 1 to 8
    
    Follow-up to 3407bee8c8f145557fc9f8baa
    
    Closes #21298

    Changed files

    • lib/setopt.c
  3. Change #264314

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 13 Apr 2026 19:52:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 40d57c9f588c42ed3f75fe0ba9b12aa18170a404

    Comments

    hostip: resolve user supplied ip addresses
    When a user supplied an ip address in a URL as hostname, use that even
    when address family restrictions like -4 or -6 are set.
    
    Add test_10_15/16 to verify with a local proxy server.
    
    Fixes #21146
    Reported-by: Terrance Wong
    
    How:
    - cf-dns: on see the hostname is an ip(v6) address, add the respective
      A/AAAA to the dns query bits
    - cf-dns/hostip: only hand out addrinfos for a family if that family
      is part of the DNS queries. That prevents for example ipv6 addresses
      to show up from dns cache entries
    - change cf-ip-happy to no longer check for "ip_version" and instead
      use all addresses that cf-dns hands out
    
    Closes #21295

    Changed files

    • lib/cf-dns.c
    • lib/cf-ip-happy.c
    • lib/hostip.c
    • tests/http/test_10_proxy.py
    • tests/http/testenv/curl.py
    • tests/http/testenv/httpd.py