• (Prolly a Noob Question)

    From Charles Stephenson@VERT to All on Saturday, July 06, 2019 05:21:32
    I've been looking at the Wiki's but haven't had any luck. Maybe I'm just looking or missing something.

    But, When you use 'umonitor' (or gtkmonitor) and there's a 'letter code' after each node connection status. ie: 'Waiting for caller [E]'

    Is there something that stats what each '[*]' mean? Some of the letters are kind of obvious, but others I have no idea what they mean. I see the [E] often. Curious what that means.

    Thanks in advance
    Regards,
    KrUpTiOn
    --- SBBSecho 3.07-Linux
    * Origin: The New Frontier ][ BBS(frontierbbs.net) - [Ohio] (1:226/17)
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Digital Man@VERT to Charles Stephenson on Saturday, July 06, 2019 14:04:43
    Re: (Prolly a Noob Question)
    By: Charles Stephenson to All on Sat Jul 06 2019 05:21 am

    I've been looking at the Wiki's but haven't had any luck. Maybe I'm just looking or missing something.

    But, When you use 'umonitor' (or gtkmonitor) and there's a 'letter code' after each node connection status. ie: 'Waiting for caller [E]'

    Is there something that stats what each '[*]' mean? Some of the letters are kind of obvious, but others I have no idea what they mean. I see the [E] often. Curious what that means.

    [E] means that node has a timed event pending.

    From load/presence_lib.js:
    var flags = '';
    if(node_misc&NODE_AOFF)
    flags += 'A';
    if(node_misc&NODE_LOCK)
    flags += 'L';
    if(node_misc&NODE_MSGW)
    flags += 'M';
    if(node_misc&NODE_NMSG)
    flags += 'N';
    if(node_misc&NODE_POFF)
    flags += 'P';
    if(flags)
    output += format(" (%s)", flags);

    if(is_sysop) {
    flags = '';
    if(node_misc&NODE_ANON)
    flags += 'A';
    if(node_misc&NODE_INTR)
    flags += 'I';
    if(node_misc&NODE_RRUN)
    flags += 'R';
    if(node_misc&NODE_UDAT)
    flags += 'U';
    if(node_misc&NODE_EVENT)
    flags += 'E';
    if(node_misc&NODE_DOWN)
    flags += 'D';
    if(node_misc&NODE_LCHAT)
    flags += 'C';
    if(node.status == NODE_QUIET)
    flags += 'Q';
    if(flags)
    output += format(" [%s]", flags);
    }

    I'm sure there's a better reference somewhere.

    Some of the node status flags are documented here: http://synchro.net/docs/user.html

    ah... here it is:
    http://synchro.net/docs/appendix.html#Appendix_E

    digital man

    Synchronet/BBS Terminology Definition #7:
    BinkP = BinkD Protocol
    Norco, CA WX: 82.0øF, 51.0% humidity, 3 mph E wind, 0.00 inches rain/24hrs

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Charles Stephenson@VERT to Digital Man on Monday, July 08, 2019 22:31:21
    Re: (Prolly a Noob Question)
    By: Digital Man to Charles Stephenson on Sat Jul 06 2019 02:04 pm

    I'm sure there's a better reference somewhere.

    Some of the node status flags are documented here: http://synchro.net/docs/user.html

    ah... here it is:
    http://synchro.net/docs/appendix.html#Appendix_E


    Thanks for the help!
    Regards,
    KrUpTiOn
    --- SBBSecho 3.07-Linux
    * Origin: The New Frontier ][ BBS(frontierbbs.net) - [Ohio] (1:226/17)
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net