| 116 | } |
| 117 | |
| 118 | bool IsAuthReqPkg(const char * buf, int len) { |
| 119 | if (len < 5) { |
| 120 | return false; |
| 121 | } |
| 122 | return buf[4] == 0xA; |
| 123 | } |
| 124 | |
| 125 | bool IsAuthFinishPkg(const char * buf, int len) { |
| 126 | if (len < 5) { |
nothing calls this directly
no outgoing calls
no test coverage detected