| 1450 | } |
| 1451 | |
| 1452 | const unsigned char* SrvAuthBlock::getData(unsigned int* length) |
| 1453 | { |
| 1454 | *length = (ULONG) dataForPlugin.getCount(); |
| 1455 | |
| 1456 | if (*length && pluginName != plugins->name()) |
| 1457 | *length = 0; |
| 1458 | |
| 1459 | return *length ? dataForPlugin.begin() : NULL; |
| 1460 | } |
| 1461 | |
| 1462 | void SrvAuthBlock::putData(CheckStatusWrapper* status, unsigned int length, const void* data) |
| 1463 | { |
no test coverage detected