• src/sbbs3/sexyz.c

    From Rob Swindell@VERT to Git commit to main/sbbs/master on Thursday, November 26, 2020 00:09:42
    https://gitlab.synchro.net/main/sbbs/-/commit/2cc09ca043ed1e3ec849ffff
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Read/set socket options from [sockopts] section of sexpots.ini

    Only in Socket I/O mode. This will allow us to tweak the SNDBUF size (to account for slow ZMODEM downloads - sends from sexyz) and frob other socket knobs.

    Also added a line feed to Windows OutputDebugString() messages since MSVC's debug log viewer now assumes that you will.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell@VERT to Git commit to main/sbbs/master on Thursday, November 26, 2020 21:21:58
    https://gitlab.synchro.net/main/sbbs/-/commit/a754d85cbdc6cff4e8a17f69
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Comment header cleanup.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell@VERT to Git commit to main/sbbs/master on Saturday, November 28, 2020 05:07:15
    https://gitlab.synchro.net/main/sbbs/-/commit/10339c97a62179a636500b4c
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Detail the recv_buffer() return value of 0 (TIMEOUT) in comment.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell@VERT to Git commit to main/sbbs/master on Monday, November 30, 2020 23:13:02
    https://gitlab.synchro.net/main/sbbs/-/commit/b16b7a4f0ab07d70cc522ef0
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Fix: the -m (max file size) cmd-line option did not work.

    Pre-increment would've worked too.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell@VERT to Git commit to main/sbbs/master on Sunday, February 14, 2021 15:58:44
    https://gitlab.synchro.net/main/sbbs/-/commit/95281f9680871a7025baba41
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Display Git branch/hash used to build sexyz.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell@VERT to Git commit to main/sbbs/master on Monday, April 05, 2021 18:05:00
    https://gitlab.synchro.net/main/sbbs/-/commit/fd7cf58bd3ec2b5055c3cd79
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Address GCC 9.3.0 warnings:

    warning: format not a string literal and no format arguments

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on Debian Linux)@VERT to Git commit to main/sbbs/master on Thursday, February 20, 2025 20:29:35
    https://gitlab.synchro.net/main/sbbs/-/commit/c5b1b4b5c65f56b4bc3da536
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Bug fix for multi-file zmodem-send using wildcards

    If the first specified file in the list had a wildcard pattern, multiple ZRQINIT (request init) frames would be sent (one for each file matching
    the first list item file pattern).

    This was just found via code review, not in the wild.

    ---
    þ 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 Friday, September 26, 2025 14:17:14
    https://gitlab.synchro.net/main/sbbs/-/commit/6bc626bedf028105f520ad56
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Increment version to 3.1

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Rob Swindell (on Debian Linux)@VERT to Git commit to main/sbbs/master on Friday, September 26, 2025 18:16:24
    https://gitlab.synchro.net/main/sbbs/-/commit/70a445decf8a4c69f1ac0c65
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Sanitize the stdio-path of sendbuf()

    Fix what appear to be bugs in the mix-up of the global 'sock', the 's' argument, and FILENO_STDIN versus FILENO_STDOUT.

    This seemed to work anyway since stdout was blocking (would never return EAGAIN/EWOULDBLOCK).

    Just wanted to clean this up before pollifying (related to issue #445).

    ---
    þ 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 Friday, September 26, 2025 19:38:47
    https://gitlab.synchro.net/main/sbbs/-/commit/fa6202f2a587411b40d3a94d
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Implement poll (rather than select) support when PREFER_POLL defined

    Attempt to fix issue #445

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Deuc¿@VERT to Git commit to main/sbbs/master on Friday, October 24, 2025 22:27:59
    https://gitlab.synchro.net/main/sbbs/-/commit/929fc7cde612b44a7dbb9489
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Fix error on systems where poll() is preferred (ie: *nix)

    Broken in fa6202f2a58, after poll() indicates there is data to
    read, recv_buffer() would return a timeout rather than set the
    timeout to zero and retry the recv().

    ---
    þ 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 Thursday, January 08, 2026 03:55:52
    https://gitlab.synchro.net/main/sbbs/-/commit/231233096fde3a7595afcf69
    Modified Files:
    src/sbbs3/sexyz.c
    Log Message:
    Remove glob() usage

    If we really need to expand wildcards in specified transmit path/filenames
    (do we?), there's better ways to do it.

    Increment version to 3.2

    Fix issue #1044

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