| 102 | } |
| 103 | |
| 104 | static bool FSameHost(client *clientA, client *clientB) |
| 105 | { |
| 106 | if (clientA == nullptr || clientB == nullptr) |
| 107 | return false; |
| 108 | |
| 109 | const unsigned char *a = clientA->uuid; |
| 110 | const unsigned char *b = clientB->uuid; |
| 111 | |
| 112 | return FSameUuidNoNil(a, b); |
| 113 | } |
| 114 | |
| 115 | static bool FMasterHost(client *c) |
| 116 | { |
no test coverage detected