mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
fixed typo
This commit is contained in:
parent
fa5e4d57fd
commit
ff0e6813c6
|
@ -312,8 +312,8 @@ namespace data
|
||||||
{
|
{
|
||||||
if (address->caps)
|
if (address->caps)
|
||||||
{
|
{
|
||||||
if (address->caps | AddressCaps::eV4) supportedTransports |= eNTCP2V4;
|
if (address->caps & AddressCaps::eV4) supportedTransports |= eNTCP2V4;
|
||||||
if (address->caps | AddressCaps::eV6) supportedTransports |= eNTCP2V6;
|
if (address->caps & AddressCaps::eV6) supportedTransports |= eNTCP2V6;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
supportedTransports |= eNTCP2V4; // most likely, since we don't have host
|
supportedTransports |= eNTCP2V4; // most likely, since we don't have host
|
||||||
|
@ -326,10 +326,10 @@ namespace data
|
||||||
{
|
{
|
||||||
if (isHost)
|
if (isHost)
|
||||||
supportedTransports |= address->host.is_v4 () ? eSSUV4 : eSSUV6;
|
supportedTransports |= address->host.is_v4 () ? eSSUV4 : eSSUV6;
|
||||||
else if (address->caps | AddressCaps::eV6)
|
else if (address->caps & AddressCaps::eV6)
|
||||||
{
|
{
|
||||||
supportedTransports |= eSSUV6;
|
supportedTransports |= eSSUV6;
|
||||||
if (address->caps | AddressCaps::eV4) supportedTransports |= eSSUV4; // in additional to v6
|
if (address->caps & AddressCaps::eV4) supportedTransports |= eSSUV4; // in additional to v6
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
supportedTransports |= eSSUV4; // in case if host or 6 caps is not preasented, we assume 4
|
supportedTransports |= eSSUV4; // in case if host or 6 caps is not preasented, we assume 4
|
||||||
|
|
Loading…
Reference in a new issue