mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
4c897f583c
* make socket bind errors have a distinct message reported when caught using their own exception type * omit printing banner in setup when we run from the lokinet executable (but not the liblokinet.so entry point)
11 lines
185 B
C++
11 lines
185 B
C++
#pragma once
|
|
|
|
namespace llarp::util
|
|
{
|
|
class bind_socket_error : public std::runtime_error
|
|
{
|
|
public:
|
|
using std::runtime_error::runtime_error;
|
|
};
|
|
} // namespace llarp::util
|