Skip to content
Snippets Groups Projects
  1. Mar 01, 2020
    • rswindell's avatar
      Added support for a "list messages module" which is an optional module (Baja or · 56059107
      rswindell authored
      JS) which will be executed when a users uses the the (L)ist msgs command from
      the "Reading" sub or "Reading E-mail" prompt.
      The arguments passed to the module are: <sub-code> [which]  [usernum]  [lm_mode]
      The additional optional arguments are the same values as would be passed to a
      readmail_mod, if one were to be used instead.
      56059107
    • rswindell's avatar
      Resolve MSVC warnings: · d16950b8
      rswindell authored
      src\sbbs3\js_global.c(3703): warning C4018: '<': signed/unsigned mismatch
      src\sbbs3\js_global.c(3761): warning C4018: '<': signed/unsigned mismatch
      src\sbbs3\js_global.c(3779): warning C4018: '<': signed/unsigned mismatch
      d16950b8
    • rswindell's avatar
    • rswindell's avatar
      Bug-fix: when enumerating a message header (returned from · 621d77fb
      rswindell authored
      MsgBase.get_msg_header or get_all_msg_headers), the message header object's
      private data (used internally in these C source functions) would be freed and
      NULL'd, apparenty as a form of optimization. This would cause some methods
      which can accept a msg header object as an argument (e.g.
      MsgBase.put_msg_header, bbs.show_msg/show_msg_header) to fail or behave
      in strange ways.
      
      Instead of freeing/NULLing the private data (and depending on that as an
      indication that the header has been enuemrated), just set a member variable
      indicating that the header has been enumerated (once) already.
      
      This is the bug that has been tripping me up with my message lister JS mod
      (see YouTube video). I can finally get that committed to CVS for testing now.
      :-)
      621d77fb
  2. Feb 22, 2020
  3. Feb 04, 2020
  4. Feb 02, 2020
  5. Jan 24, 2020
  6. Jan 23, 2020
    • deuce's avatar
      While we're making ssllabs happy, disable TLS 1.0 and 1.1 in the web server · f420d8e5
      deuce authored
      only (you can still use them from JS etc).
      f420d8e5
    • rswindell's avatar
      Fix bug introduced in rev 1.236 (April-3-2014): · 579119c9
      rswindell authored
      Areafix requests to unlink a node from an area would corrupt the list of
      linked nodes: the *last* listed node would always be removed. If this was
      not the node that submitted the areafix request, then 2 nodes would be
      removed from the list of linked-nodes for an echo.
      To simplify this, we're just going to not write the removed node back to
      the area file, but leave it in the in-memory list. So technically, the node
      won't be unlinked until the next run of SBBSecho when the area file is
      re-parsed. If that's a problem, we can always add run-time removal from
      the in-memory list later. Reported by Alterego (ALTERANT).
      579119c9
  7. Jan 20, 2020
  8. Jan 10, 2020
  9. Jan 09, 2020
  10. Jan 05, 2020
  11. Jan 04, 2020
  12. Jan 03, 2020
  13. Dec 22, 2019
    • rswindell's avatar
      Address gcc warning: · 657ff707
      rswindell authored
      conn_telnet.c: In function 'telnet_output_thread':
      conn_telnet.c:95:56: warning: passing argument 6 of 'telnet_expand' from incompatible pointer type
      ../sbbs3/telnet.h:168:18: note: expected 'unsigned char **' but argument is of type 'char **'
      657ff707
    • rswindell's avatar
      Address warning: · 9c410324
      rswindell authored
      bbslist.c: In function 'get_emulation_str':
      bbslist.c:2105:1: warning: control reaches end of non-void function
      9c410324
  14. Dec 20, 2019
  15. Dec 13, 2019
  16. Dec 01, 2019
  17. Nov 30, 2019
  18. Nov 22, 2019
    • rswindell's avatar
      Fix error: · fc24a2d5
      rswindell authored
      targets.mk:8: *** missing separator (did you mean TAB instead of 8 spaces?).  Stop.
      fc24a2d5
  19. Nov 19, 2019
  20. Nov 18, 2019
  21. Oct 30, 2019
    • rswindell's avatar
      Even more loop-prevention paranoia: · 4fcf37b0
      rswindell authored
      If a packed messages contains no PATH or SEEN-BY lines, we can still detect
      and prevent a message loop by comparing the origin address in the packet header
      against the downlink's address and if it's a match, skip that downlink.
      It is still possible that a packed message header contains a different origin
      address than the packet header, and we're actually over-writing the packed
      messge header variable with the parsed Origin: line address (if there is one),
      so perhaps we'll want to compare the (actual) packed message header origin
      address too at some point in the future, if loops continue to be a problem.
      4fcf37b0
  22. Oct 27, 2019
    • rswindell's avatar
      More loop prevention: check a message's PATH in addition-to its SEEN-BYs in · cc14d426
      rswindell authored
      write_to_pkts():
      If for some weird reason a downlink's address is in the PATH, but not in the
      SEEN-BYs, detect as a loop and don't send to (add to an outbound pkt for) the
      downlink.
      
      This is an experimental change to see if it addresses the issue reported by
      Richard Williamson and Mark Lewis with regards to dupes in the COOKING
      echo from point nodes off 1:396/45.
      cc14d426
  23. Oct 24, 2019
    • rswindell's avatar
      Invoking a JavaScripot global hot key event handler (e.g. nodelist.js) *while* · c912ee30
      rswindell authored
      running a JavaScript module would crash (e.g. segfault) sbbs:
      Create and use a separate JS runtime, context, and global object/scope for
      global hotkey events. This means that the hotkey won't benefit from any
      previously loaded/required scripts, possibly effecting the performance of the
      first invocation of the hotkey handler. Subsequent JS hotkey events will reuse
      the same runtime/context/global, so they'll execute fast(er).
      
      One questionalbe change to js_execfile():
      With the JS_GC (garbage collection) call *before* the JS_ENDREQUEST() call, the
      process would crash in libmozjs. Moving the JS_GC() call to *after* the
      JS_ENDREQUEST() resolved this issue and I'm not clear why. This 'js_cx'
      parameter here is not always sbbs_t::js_cx. When called to handle a JS hotkey
      event, it's sbbs_t::js_hotkey_cx, so it shouldn't interfere with the
      sbs_t::js_cx being used by the currently executing JS module (shell or door).
      <scratches chin>
      c912ee30
    • rswindell's avatar
      aa2bcd61
  24. Oct 21, 2019
  25. Oct 17, 2019
Loading