| 542 | const size_t PA_DATA_LEN = sizeof(PA_DATA) - 1/*not count the ending zero*/; |
| 543 | |
| 544 | static void CopyPAPrefixedWithSeqNo(char* buf, uint64_t seq_no) { |
| 545 | memcpy(buf, PA_DATA, PA_DATA_LEN); |
| 546 | *(uint64_t*)buf = seq_no; |
| 547 | } |
| 548 | |
| 549 | class DownloadServiceImpl : public ::test::DownloadService { |
| 550 | public: |
no outgoing calls
no test coverage detected