Changeset 141 in Main for trunk/Server/tw_module.h


Ignore:
Timestamp:
Sep 23, 2024, 8:37:53 PM (8 weeks ago)
Author:
Nishi
Message:

adding new module return

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/tw_module.h

    r140 r141  
    1919        _TW_MODULE_PASS = 0, /* Pass to the next module. */
    2020        _TW_MODULE_STOP,     /* Do not pass to the next module. */
     21        _TW_MODULE_STOP2,    /* Do not pass to the next module, and do not handle response. */
    2122        _TW_MODULE_ERROR,    /* Error, and do not pass to the next module. */
    2223
     
    2829#define TW_MODULE_PASS _TW_MODULE_PASS
    2930#define TW_MODULE_STOP _TW_MODULE_STOP
     31#define TW_MODULE_STOP2 _TW_MODULE_STOP2
    3032#define TW_MODULE_ERROR(x) (_TW_MODULE_ERROR | ((x) << 8))
    3133
Note: See TracChangeset for help on using the changeset viewer.