Return the next unique proxy credentials. */
| 778 | |
| 779 | /** Return the next unique proxy credentials. */ |
| 780 | ProxyCredentials Generate() { |
| 781 | ProxyCredentials auth; |
| 782 | auth.username = auth.password = strprintf("%s%i", m_prefix, m_counter); |
| 783 | ++m_counter; |
| 784 | return auth; |
| 785 | } |
| 786 | |
| 787 | /** Size of session prefix in bytes. */ |
| 788 | static constexpr size_t PREFIX_BYTE_LENGTH = 8; |
no outgoing calls
no test coverage detected