summaryrefslogtreecommitdiffstats
path: root/kcontrol/ebrowsing/plugins/localdomain/klocaldomainurifilterhelper.c
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/ebrowsing/plugins/localdomain/klocaldomainurifilterhelper.c')
-rw-r--r--kcontrol/ebrowsing/plugins/localdomain/klocaldomainurifilterhelper.c60
1 files changed, 60 insertions, 0 deletions
diff --git a/kcontrol/ebrowsing/plugins/localdomain/klocaldomainurifilterhelper.c b/kcontrol/ebrowsing/plugins/localdomain/klocaldomainurifilterhelper.c
new file mode 100644
index 000000000..2f61d6824
--- /dev/null
+++ b/kcontrol/ebrowsing/plugins/localdomain/klocaldomainurifilterhelper.c
@@ -0,0 +1,60 @@
+/*
+ kshorturifilterhelper.cpp
+
+ This file is part of the KDE project
+ Copyright (C) 2002 Lubos Lunak <llunak@suse.cz>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License version 2
+ as published by the Free Software Foundation.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/* Helper for localdomainurifilter for finding out if a host exist */
+
+#ifndef NULL
+#define NULL 0
+#endif
+
+#include <netdb.h>
+#include <stdio.h>
+#include <string.h>
+
+int main( int argc, char* argv[] )
+{
+ struct hostent* ent;
+
+ if( argc != 2 )
+ return 2;
+
+ ent = gethostbyname( argv[ 1 ] );
+ if (ent)
+ {
+ int i;
+ int found = 0;
+ /* try to find the same fully qualified name first */
+ for( i = 0;
+ ent->h_aliases[ i ] != NULL;
+ ++i )
+ {
+ if( strncmp( argv[ 1 ], ent->h_aliases[ i ], strlen( argv[ 1 ] )) == 0 )
+ {
+ found = 1;
+ fputs( ent->h_aliases[ i ], stdout );
+ break;
+ }
+ }
+ if( !found )
+ fputs( ent->h_name, stdout );
+ }
+
+ return (ent != NULL || h_errno == NO_ADDRESS) ? 0 : 1;
+}