• src/xpdev/netwrap.c

    From Deucе@VERT to Git commit to main/sbbs/master on Sun Mar 15 16:01:53 2026
    https://gitlab.synchro.net/main/sbbs/-/commit/4d10a54239ab8c52d2061abf
    Modified Files:
    src/xpdev/netwrap.c
    Log Message:
    Fix addrinfo linked list traversal in parseIPv6Address()

    cur++ is undefined behavior on a linked list — addrinfo nodes from getaddrinfo() are not contiguous in memory. Use cur = cur->ai_next
    to follow the linked list correctly.

    Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

    ---
    ï¿­ Synchronet ï¿­ Vertrauen ï¿­ Home of Synchronet ï¿­ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on Windows 11)@VERT to Git commit to main/sbbs/master on Sat Mar 21 20:05:42 2026
    https://gitlab.synchro.net/main/sbbs/-/commit/775e87a6145aaaf4673a8e52
    Modified Files:
    src/xpdev/netwrap.c
    Log Message:
    Add IPv6 support to getHostNameByAddr()

    Make isValidAddressString() work on Windows when WinSock hasn't already been initialized.
    Update the buffers passed to xp_inet_pton() from isValidAddressString() to be non-structs (which were getting clobbered by xp_inet_pton()).

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net