| 130 | } |
| 131 | |
| 132 | QString addressToString(const lm::address& address) |
| 133 | { |
| 134 | QString text = QString::fromLatin1(address.text.data(), static_cast<int>(address.text_length)); |
| 135 | if (address.ssid != 0) |
| 136 | text.append(QStringLiteral("-%1").arg(address.ssid)); |
| 137 | return text; |
| 138 | } |
| 139 | |
| 140 | QByteArray frameSignature(const Ax25DecodedFrame& frame) |
| 141 | { |
no test coverage detected