summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/modem.cpp
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/ppp/modem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/modem.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/ppp/modem.cpp b/noncore/settings/networksettings/ppp/modem.cpp
index 002c8e7..2da9b14 100644
--- a/noncore/settings/networksettings/ppp/modem.cpp
+++ b/noncore/settings/networksettings/ppp/modem.cpp
@@ -1,80 +1,82 @@
1/* 1/*
2 * kPPP: A pppd Front End for the KDE project 2 * kPPP: A pppd Front End for the KDE project
3 * 3 *
4 * $Id$ 4 * $Id$
5 * 5 *
6 * Copyright (C) 1997 Bernd Johannes Wuebben 6 * Copyright (C) 1997 Bernd Johannes Wuebben
7 * wuebben@math.cornell.edu 7 * wuebben@math.cornell.edu
8 * 8 *
9 * This file was added by Harri Porten <porten@tu-harburg.de> 9 * This file was added by Harri Porten <porten@tu-harburg.de>
10 * 10 *
11 * 11 *
12 * This program is free software; you can redistribute it and/or 12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Library General Public 13 * modify it under the terms of the GNU Library General Public
14 * License as published by the Free Software Foundation; either 14 * License as published by the Free Software Foundation; either
15 * version 2 of the License, or (at your option) any later version. 15 * version 2 of the License, or (at your option) any later version.
16 * 16 *
17 * This program is distributed in the hope that it will be useful, 17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Library General Public License for more details. 20 * Library General Public License for more details.
21 * 21 *
22 * You should have received a copy of the GNU Library General Public 22 * You should have received a copy of the GNU Library General Public
23 * License along with this program; if not, write to the Free 23 * License along with this program; if not, write to the Free
24 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 24 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 */ 25 */
26 26
27#include <errno.h> 27#include <errno.h>
28#include <stdlib.h> 28#include <stdlib.h>
29#include <unistd.h> 29#include <unistd.h>
30#include <fcntl.h> 30#include <fcntl.h>
31#include <signal.h> 31#include <signal.h>
32#include <sys/ioctl.h> 32#include <sys/ioctl.h>
33#include <sys/types.h>
34#include <sys/stat.h>
33#include <setjmp.h> 35#include <setjmp.h>
34#include <regex.h> 36#include <regex.h>
35#include <qregexp.h> 37#include <qregexp.h>
36#include <assert.h> 38#include <assert.h>
37#include <string.h> 39#include <string.h>
38 40
39#ifdef HAVE_RESOLV_H 41#ifdef HAVE_RESOLV_H
40# include <arpa/nameser.h> 42# include <arpa/nameser.h>
41# include <resolv.h> 43# include <resolv.h>
42#endif 44#endif
43 45
44#ifndef _PATH_RESCONF 46#ifndef _PATH_RESCONF
45#define _PATH_RESCONF "/etc/resolv.conf" 47#define _PATH_RESCONF "/etc/resolv.conf"
46#endif 48#endif
47 49
48#define strlcpy strcpy 50#define strlcpy strcpy
49#include "auth.h" 51#include "auth.h"
50#include "modem.h" 52#include "modem.h"
51#include "pppdata.h" 53#include "pppdata.h"
52//#include <klocale.h> 54//#include <klocale.h>
53#define i18n QObject::tr 55#define i18n QObject::tr
54#define qError qDebug 56#define qError qDebug
55//#include <kdebug.h> 57//#include <kdebug.h>
56//#include <config.h> 58//#include <config.h>
57 59
58#define MY_ASSERT(x) if (!(x)) { \ 60#define MY_ASSERT(x) if (!(x)) { \
59 qFatal( "ASSERT: \"%s\" in %s (%d)\n",#x,__FILE__,__LINE__); \ 61 qFatal( "ASSERT: \"%s\" in %s (%d)\n",#x,__FILE__,__LINE__); \
60 exit(1); } 62 exit(1); }
61 63
62 64
63static sigjmp_buf jmp_buffer; 65static sigjmp_buf jmp_buffer;
64 66
65//Modem *Modem::modem = 0; 67//Modem *Modem::modem = 0;
66 68
67 69
68const char* pppdPath() { 70const char* pppdPath() {
69 // wasting a few bytes 71 // wasting a few bytes
70 static char buffer[sizeof(PPPDSEARCHPATH)+sizeof(PPPDNAME)]; 72 static char buffer[sizeof(PPPDSEARCHPATH)+sizeof(PPPDNAME)];
71 static char *pppdPath = 0L; 73 static char *pppdPath = 0L;
72 char *p; 74 char *p;
73 75
74 if(pppdPath == 0L) { 76 if(pppdPath == 0L) {
75 const char *c = PPPDSEARCHPATH; 77 const char *c = PPPDSEARCHPATH;
76 while(*c != '\0') { 78 while(*c != '\0') {
77 while(*c == ':') 79 while(*c == ':')
78 c++; 80 c++;
79 p = buffer; 81 p = buffer;
80 while(*c != '\0' && *c != ':') 82 while(*c != '\0' && *c != ':')