We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a41ab9f commit efdad4fCopy full SHA for efdad4f
2 files changed
src/server.cpp
@@ -532,6 +532,9 @@ void CServer::OnCLReqServerFeatures ( CHostAddress RecHostAddr )
532
// Licence agreement required? (argument -L)
533
iFeatures |= ( ( eLicenceType != LT_NO_LICENCE ) << FS_HAS_LICENCE );
534
535
+ // TCP enabled? (argument --enabletcp)
536
+ iFeatures |= ( bEnableTcp << FS_TCP_ENABLED );
537
+
538
// TODO:
539
// Running a GUI? (argument -n disables the GUI)
540
// iFeatures |= ( << FS_HAS_GUI );
src/util.h
@@ -633,7 +633,8 @@ enum EFeatureSet
633
FS_IS_LOGGING = 9,
634
FS_HAS_LICENCE = 10,
635
FS_HAS_GUI = 11,
636
- FS_RPC_ENABLED = 12
+ FS_RPC_ENABLED = 12,
637
+ FS_TCP_ENABLED = 13
638
};
639
640
inline QString DirectoryTypeToString ( EDirectoryType eAddrType )
0 commit comments