mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 07:17:53 +00:00
make enum and parameter used in Bind() unsigned
- it's good practise to use unsigned int for enum flags, so change this one, as I introduced this for Bind()
This commit is contained in:
parent
f2b12807d0
commit
29e214aaf5
@ -28,9 +28,9 @@ CClientUIInterface uiInterface;
|
||||
|
||||
// Used to pass flags to the Bind() function
|
||||
enum BindFlags {
|
||||
BF_NONE = 0,
|
||||
BF_EXPLICIT = 1,
|
||||
BF_REPORT_ERROR = 2
|
||||
BF_NONE = 0,
|
||||
BF_EXPLICIT = (1U << 0),
|
||||
BF_REPORT_ERROR = (1U << 1)
|
||||
};
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
@ -220,7 +220,7 @@ bool static InitWarning(const std::string &str)
|
||||
}
|
||||
|
||||
|
||||
bool static Bind(const CService &addr, int flags) {
|
||||
bool static Bind(const CService &addr, unsigned int flags) {
|
||||
if (!(flags & BF_EXPLICIT) && IsLimited(addr))
|
||||
return false;
|
||||
std::string strError;
|
||||
|
Loading…
Reference in New Issue
Block a user