| 123 | } |
| 124 | |
| 125 | bool IsAuthFinishPkg(const char * buf, int len) { |
| 126 | if (len < 5) { |
| 127 | return false; |
| 128 | } |
| 129 | return buf[4] == 0x0; |
| 130 | } |
| 131 | |
| 132 | uint64_t GetTimestampMS() { |
| 133 | uint64_t u = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected