diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-08-05 02:07:17 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-08-05 02:07:17 +0200 |
commit | dff71bc297b744856e303ad9a175de92c9acae0d (patch) | |
tree | 3954dcafcdc8fcd374535a00cc6a47133594b3ed /code/fe310/eos/cell.c | |
parent | 3a2958ab8268b3388c780f902e74ad0c0d24c5c9 (diff) |
cell message type support
Diffstat (limited to 'code/fe310/eos/cell.c')
-rw-r--r-- | code/fe310/eos/cell.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/code/fe310/eos/cell.c b/code/fe310/eos/cell.c index 3ce81f9..2421f4b 100644 --- a/code/fe310/eos/cell.c +++ b/code/fe310/eos/cell.c @@ -15,10 +15,11 @@ static void cell_handle_evt(unsigned char type, unsigned char *buffer, uint16_t eos_net_bad_handler(type, buffer, len); return; } - unsigned char mtype = buffer[0]; - if (mtype < EOS_CELL_MAX_MTYPE) { - evt_handler[mtype](type, buffer, len); + unsigned char idx = (mtype & EOS_CELL_MTYPE_MASK) >> 4; + + if (idx < EOS_CELL_MAX_MTYPE) { + evt_handler[idx](type, buffer, len); } else { eos_net_bad_handler(type, buffer, len); } @@ -40,6 +41,8 @@ void eos_cell_init(void) { } void eos_cell_set_handler(unsigned char mtype, eos_evt_handler_t handler) { + unsigned char idx = (mtype & EOS_CELL_MTYPE_MASK) >> 4; + if (handler == NULL) handler = eos_net_bad_handler; - if (mtype < EOS_CELL_MAX_MTYPE) evt_handler[mtype] = handler; + if (idx < EOS_CELL_MAX_MTYPE) evt_handler[idx] = handler; } |