summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2005-08-15 09:58:06 (UTC)
committer llornkcor <llornkcor>2005-08-15 09:58:06 (UTC)
commite7c0016a970ab1bdf5870a648a7bf07b857fbb11 (patch) (side-by-side diff)
tree3180a13bf982fbb3d908a6a0c5d824bb63a22936 /noncore
parent75eb12d42636cbd837d49f9c1347387e96e4174b (diff)
downloadopie-e7c0016a970ab1bdf5870a648a7bf07b857fbb11.zip
opie-e7c0016a970ab1bdf5870a648a7bf07b857fbb11.tar.gz
opie-e7c0016a970ab1bdf5870a648a7bf07b857fbb11.tar.bz2
scan better
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opie-smb/qsmb.cpp80
1 files changed, 25 insertions, 55 deletions
diff --git a/noncore/net/opie-smb/qsmb.cpp b/noncore/net/opie-smb/qsmb.cpp
index d6d1b23..c1ee9a9 100644
--- a/noncore/net/opie-smb/qsmb.cpp
+++ b/noncore/net/opie-smb/qsmb.cpp
@@ -16,6 +16,7 @@
#include <qcheckbox.h>
#include <qtextview.h>
#include <qmessagebox.h>
+#include <qtextstream.h>
#include <pthread.h>
@@ -100,12 +101,7 @@ void Qsmb::scan()
scanning = true;
QString match;
- char lmhosts[512];
QString cmd;
- char result[256];
-
- FILE *pipe, *pipe2;
-
LScan->setText("Scanning...");
qApp->processEvents();
@@ -117,61 +113,35 @@ void Qsmb::scan()
match = ip.left(5);
- cmd = "smbfind";
- owarn <<"cmd: " << cmd << oendl;
-
- TextViewOutput->append(cmd);
-
- snprintf(lmhosts, 512, "echo '127.0.0.1 localhost'>/etc/samba/lmhosts");
-
- if ((pipe2 = popen(lmhosts, "r")) == NULL) {
- snprintf(result, 256, "Error: Can't run %s", lmhosts);
- //TextViewOutput->append(result);
- return;
- }
-
- /* run command & read output */
- if ((pipe = popen(cmd.latin1(), "r")) == NULL) {
- snprintf(result, 256, "Error: Can't run %s", cmd.latin1());
- TextViewOutput->append(result);
- return;
- }
+ QStringList ccmd;
+ TextViewOutput->append("smbfind");
+ QFile lmhosts("/etc/samba/lmhosts");
+ QTextStream lms(&lmhosts);
+ lmhosts.open(IO_WriteOnly);
+ lms << "127.0.0.1 localhost\n";
+
/* parse output and display in ListViewScan */
- while(fgets(result, 256, pipe) != NULL) {
- /* put result into TextViewOutput */
- TextViewOutput->append(result);
-
- if( strstr(result, match.latin1()) != NULL ) {
- char ip_addr[256], host[256], *ptr1;
-
- strcpy( ip_addr, result);
- ptr1 = strchr(ip_addr,' ');
- strcpy( host, ptr1);
- ip_addr[ptr1 - ip_addr]='\0';
-
- for(i = 0; i < 256; i++) {
- if(host[i]!=' ') {
- strcpy( host, host + i);
- break;
- }
- }
- ptr1 = strchr(host,' ');
- host[ptr1 - host] = '\0';
-
- owarn << "add host: " << host << oendl;
-
+ ccmd = "smbfind";
+ owarn <<"cmd: " << ccmd << oendl;
+ runCommand(ccmd);
+
+ QTextStream s(&out, IO_ReadOnly);
+
+ while ( !s.atEnd() ) {
+ QString ip_addr, host, output;
+ QString tmp = s.readLine();
+ bool ok;
+ tmp.left(1).toInt( &ok, 10 );
+ if(ok) {
+ QStringList token = QStringList::split(' ', tmp );
+ ip_addr = token[0];
+ host = token[1];
CBHost->insertItem( host, -1);
- snprintf( lmhosts, 512, "echo '%s %s'>>/etc/samba/lmhosts", ip_addr,host);
-
- owarn << "lmhosts: " << lmhosts << oendl;
-
- if ((pipe2 = popen(lmhosts, "r")) == NULL) {
- snprintf(result, 256, "Error: Can't run %s", lmhosts);
- return;
- }
+ lms << ip_addr+" "+host+"\n";
}
}
+ lmhosts.close();
TextViewOutput->append("\n\n============================================\n");
LScan->setText("");