summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/transferserver.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/launcher/transferserver.cpp b/core/launcher/transferserver.cpp
index a6dab07..ed3e2c6 100644
--- a/core/launcher/transferserver.cpp
+++ b/core/launcher/transferserver.cpp
@@ -115,6 +115,8 @@ int SyncAuthentication::isAuthorized(QHostAddress peeraddress)
cfg.setGroup("Sync");
- QString allowedstr = cfg.readEntry("auth_peer","192.168.1.0");
- QHostAddress allowed;
- allowed.setAddress(allowedstr);
- uint auth_peer = allowed.ip4Addr();
+// QString allowedstr = cfg.readEntry("auth_peer","192.168.1.0");
+ uint auth_peer = cfg.readNumEntry("auth_peer",0xc0a80100);
+
+// QHostAddress allowed;
+// allowed.setAddress(allowedstr);
+// uint auth_peer = allowed.ip4Addr();
uint auth_peer_bits = cfg.readNumEntry("auth_peer_bits",24);
@@ -201,3 +203,2 @@ bool SyncAuthentication::checkPassword( const QString& password )
-
ServerPI::ServerPI( int socket, QObject *parent , const char* name )