| 471 | |
| 472 | #if UNUSED |
| 473 | bool CSL3StateMachine::csl3Write(GenericL3Msg *msg) |
| 474 | { |
| 475 | if (1) { //l3rewrite()) |
| 476 | LOG(DEBUG) << "Received "<<msg->typeName()<<" message for l3rewrite"; |
| 477 | mCSL3Fifo.write(msg); |
| 478 | return true; // Our code is going to deal with this message. |
| 479 | } else { |
| 480 | LOG(DEBUG) << "Received "<<msg->typeName()<<" message, handling with version 1 code"; |
| 481 | // Caller must deal with this message with pre-existing version 1 code. |
| 482 | return false; |
| 483 | } |
| 484 | } |
| 485 | #endif |
| 486 | |
| 487 |