| 2317 | } |
| 2318 | |
| 2319 | DWORD On_SEND_PLRINFO(TCmd *pCmd, int pnum) |
| 2320 | { |
| 2321 | TCmdPlrInfoHdr *p = (TCmdPlrInfoHdr *)pCmd; |
| 2322 | |
| 2323 | if (gbBufferMsgs == 1) |
| 2324 | msg_send_packet(pnum, p, p->wBytes + sizeof(*p)); |
| 2325 | else |
| 2326 | recv_plrinfo(pnum, p, p->bCmd == CMD_ACK_PLRINFO); |
| 2327 | |
| 2328 | return p->wBytes + sizeof(*p); |
| 2329 | } |
| 2330 | |
| 2331 | DWORD On_ACK_PLRINFO(TCmd *pCmd, int pnum) |
| 2332 | { |
no test coverage detected