| 554 | } |
| 555 | |
| 556 | static int32 recv_compressed_token_run(void) |
| 557 | { |
| 558 | if (rx_run <= 0 || rx_token >= MAX_TOKEN_INDEX) |
| 559 | invalid_compressed_token(); |
| 560 | ++rx_token; |
| 561 | if (--rx_run == 0) |
| 562 | recv_state = r_idle; |
| 563 | return -1 - rx_token; |
| 564 | } |
| 565 | |
| 566 | /* Receive a deflated token and inflate it */ |
| 567 | static int32 recv_deflated_token(int f, char **data) |
no test coverage detected