* possible patch regarding problems parsing /etc/protocols
@ 2002-10-26 9:26 Per Jessen
0 siblings, 0 replies; 2+ messages in thread
From: Per Jessen @ 2002-10-26 9:26 UTC (permalink / raw)
To: linux-diald
[-- Attachment #1: Type: text/plain, Size: 578 bytes --]
All,
I'm sure there is a reason why utils.c isn't using the getservent/getprotoent services from netdb.h -
maybe platform related ? I don't know - but here is a patch that 1) uses those services for accessing
/etc/protocols and /etc/services, and thereby fixes the minor problem with comments in either file.
At least it works on Linux.
http://mitglied.lycos.de/pjessen/patches/patch-diald-1.0-utils
--
regards,
Per Jessen, Zurich
http://www.enidan.com - home of the J1 serial console.
Genius may have its limitations, but stupidity is not thus handicapped.
[-- Attachment #2: patch-diald-1.0-utils --]
[-- Type: text/x-diff, Size: 1060 bytes --]
--- diald-1.0/utils.c Sat Jun 16 21:51:39 2001
+++ diald-1.0.pj/utils.c Sat Oct 26 10:50:57 2002
@@ -2,6 +2,7 @@
#include <diald.h>
+#include <netdb.h>
/* Grumble. Attempt to generate a nicely formatted ascii date without
* a built in newline.
@@ -35,6 +36,35 @@
return i;
}
+int getprotocol(const char *name)
+{
+ struct protoent *p;
+
+ return NULL!=(p=getprotobyname(name)) ? p->p_proto : 0;
+}
+
+char *getprotonumber(int proto)
+{
+ static char buf[16];
+ struct protoent *p;
+
+ if ( NULL!=(p=getprotobynumber(proto)) )
+ strcpy(buf,p->p_name);
+ else
+ sprintf(buf, "%d", proto);
+
+ return buf;
+}
+
+
+int getservice(const char *name, const char *proto)
+{
+ struct servent *service;
+
+ return NULL!=(service=getservbyname( name, proto)) ? ntohs(service->s_port) : 0;
+}
+
+#if 0
struct proto {
char *name;
int proto;
@@ -151,6 +181,7 @@
}
return 0;
}
+#endif
#if 0
/* Stuff needed because to keep checker happy,
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: possible patch regarding problems parsing /etc/protocols
@ 2002-12-04 12:27 Per Jessen
0 siblings, 0 replies; 2+ messages in thread
From: Per Jessen @ 2002-12-04 12:27 UTC (permalink / raw)
To: linux-diald@vger.kernel.org
On Sat, 26 Oct 2002 11:26:44 +0200, Per Jessen wrote:
>I'm sure there is a reason why utils.c isn't using the getservent/getprotoent services from netdb.h -
>maybe platform related ? I don't know - but here is a patch that 1) uses those services for accessing
>/etc/protocols and /etc/services, and thereby fixes the minor problem with comments in either file.
>At least it works on Linux.
>
>http://mitglied.lycos.de/pjessen/patches/patch-diald-1.0-utils
I haven't heard a word from anyone regarding this - are the diald maintainers
listening in on this ?
/Per
regards,
Per Jessen, Zurich
http://www.enidan.com - home of the J1 serial console.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2002-12-04 12:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-10-26 9:26 possible patch regarding problems parsing /etc/protocols Per Jessen
-- strict thread matches above, loose matches on Subject: below --
2002-12-04 12:27 Per Jessen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).