linux-decnet-commit Mailing List for DECnet for Linux (Page 7)
Brought to you by:
chrissie_c,
ph3-der-loewe
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(15) |
Nov
(16) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(20) |
Feb
(27) |
Mar
(25) |
Apr
(12) |
May
(2) |
Jun
(6) |
Jul
(36) |
Aug
(12) |
Sep
(12) |
Oct
(16) |
Nov
(5) |
Dec
(5) |
2003 |
Jan
(8) |
Feb
(9) |
Mar
(25) |
Apr
(18) |
May
(29) |
Jun
(4) |
Jul
(1) |
Aug
|
Sep
(10) |
Oct
(5) |
Nov
(3) |
Dec
(9) |
2004 |
Jan
(17) |
Feb
|
Mar
(9) |
Apr
|
May
(4) |
Jun
(1) |
Jul
(2) |
Aug
(21) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2005 |
Jan
(5) |
Feb
|
Mar
(13) |
Apr
|
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
(13) |
Oct
(83) |
Nov
(2) |
Dec
|
2006 |
Jan
(21) |
Feb
(1) |
Mar
(32) |
Apr
(31) |
May
(3) |
Jun
(1) |
Jul
|
Aug
(7) |
Sep
|
Oct
(1) |
Nov
(3) |
Dec
(13) |
2007 |
Jan
(1) |
Feb
(7) |
Mar
|
Apr
(2) |
May
|
Jun
(1) |
Jul
(2) |
Aug
(20) |
Sep
|
Oct
|
Nov
|
Dec
(7) |
2008 |
Jan
(4) |
Feb
(13) |
Mar
(24) |
Apr
(18) |
May
(10) |
Jun
|
Jul
|
Aug
(40) |
Sep
(72) |
Oct
(61) |
Nov
(9) |
Dec
(2) |
2009 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
|
Dec
(3) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
(41) |
Aug
(28) |
Sep
(2) |
Oct
(5) |
Nov
(4) |
Dec
|
2011 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ph3...@us...> - 2008-10-04 18:23:48
|
Update of /cvsroot/linux-decnet/dnprogs/dnetd In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7568 Modified Files: task_server.c Log Message: and get ride of another two compiler warnings: socklen_t and sdn_objname is still unsigned ;) Index: task_server.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnetd/task_server.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** task_server.c 20 Aug 2008 12:43:58 -0000 1.6 --- task_server.c 4 Oct 2008 18:23:35 -0000 1.7 *************** *** 54,58 **** char *taskdir; struct stat st; ! int len = sizeof(sockaddr); int i; --- 54,58 ---- char *taskdir; struct stat st; ! socklen_t len = sizeof(sockaddr); int i; *************** *** 62,66 **** { ! strncpy(name,sockaddr.sdn_objname, dn_ntohs(sockaddr.sdn_objnamel)); name[dn_ntohs(sockaddr.sdn_objnamel)] = '\0'; } --- 62,66 ---- { ! strncpy(name, (char*)sockaddr.sdn_objname, dn_ntohs(sockaddr.sdn_objnamel)); name[dn_ntohs(sockaddr.sdn_objnamel)] = '\0'; } |
From: <ph3...@us...> - 2008-10-04 18:16:25
|
Update of /cvsroot/linux-decnet/dnprogs/libdnet In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7169 Modified Files: dnet_conn.c dnet_eof.c getnodebyname.c Log Message: get ride of some compiler warnings: use signed and unsigned correctly(getnodebyname.c), why is sdn_objnamel unsigned?(dnet_conn.c), see accpet(2) for socklen_t(dnet_eof.c, dnet_conn.c) Index: dnet_conn.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdnet/dnet_conn.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** dnet_conn.c 4 Oct 2008 14:44:03 -0000 1.8 --- dnet_conn.c 4 Oct 2008 18:16:14 -0000 1.9 *************** *** 109,113 **** if (len <= DN_MAXOBJL) { ! strncpy(sdn->sdn_objname, uname, len); sdn->sdn_objnamel = dn_htons(len); return 0; --- 109,113 ---- if (len <= DN_MAXOBJL) { ! strncpy((char*)sdn->sdn_objname, uname, len); sdn->sdn_objnamel = dn_htons(len); return 0; *************** *** 119,125 **** * and use that instead. */ ! sprintf(sdn->sdn_objname, "%d", uid); sdn->sdn_objnum = 0; ! sdn->sdn_objnamel = dn_htons(strlen(sdn->sdn_objname)); return 0; } --- 119,125 ---- * and use that instead. */ ! sprintf((char*)sdn->sdn_objname, "%d", uid); sdn->sdn_objnum = 0; ! sdn->sdn_objnamel = dn_htons(strlen((char*)sdn->sdn_objname)); return 0; } *************** *** 137,141 **** if (len > DN_MAXOBJL) return -1; ! strncpy(sdn->sdn_objname, name, len); sdn->sdn_objnamel = dn_htons(len); return 0; --- 137,141 ---- if (len > DN_MAXOBJL) return -1; ! strncpy((char*)sdn->sdn_objname, name, len); sdn->sdn_objnamel = dn_htons(len); return 0; *************** *** 238,242 **** if (opt_in && opt_inl) { ! if (getsockopt(s, DNPROTO_NSP, DSO_CONDATA, opt_in, opt_inl) < 0) goto out_err; } --- 238,242 ---- if (opt_in && opt_inl) { ! if (getsockopt(s, DNPROTO_NSP, DSO_CONDATA, opt_in, (socklen_t*)opt_inl) < 0) goto out_err; } Index: dnet_eof.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdnet/dnet_eof.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** dnet_eof.c 28 Dec 2000 20:09:11 -0000 1.1 --- dnet_eof.c 4 Oct 2008 18:16:14 -0000 1.2 *************** *** 12,16 **** #ifdef DSO_LINKINFO struct linkinfo_dn li; ! int len=4; if (getsockopt(s, DNPROTO_NSP, DSO_LINKINFO, &li, &len) == -1) --- 12,16 ---- #ifdef DSO_LINKINFO struct linkinfo_dn li; ! socklen_t len=4; if (getsockopt(s, DNPROTO_NSP, DSO_LINKINFO, &li, &len) == -1) Index: getnodebyname.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdnet/getnodebyname.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** getnodebyname.c 23 Sep 2008 16:34:25 -0000 1.8 --- getnodebyname.c 4 Oct 2008 18:16:14 -0000 1.9 *************** *** 94,100 **** addr.a_addr[0] = n & 0xFF; addr.a_addr[1] = (a << 2) | ((n & 0x300) >> 8); ! dp.n_addr = (char *)&addr.a_addr; dp.n_length=2; ! dp.n_name=(unsigned char *)name; /* No point looking this up for a real name */ dp.n_addrtype=AF_DECnet; --- 94,100 ---- addr.a_addr[0] = n & 0xFF; addr.a_addr[1] = (a << 2) | ((n & 0x300) >> 8); ! dp.n_addr = (unsigned char *)&addr.a_addr; dp.n_length=2; ! dp.n_name=(char *)name; /* No point looking this up for a real name */ dp.n_addrtype=AF_DECnet; |
From: <ph3...@us...> - 2008-10-04 18:02:21
|
Update of /cvsroot/linux-decnet/dnprogs/nml In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv6251 Modified Files: nml.c Log Message: /* Copied from libdnet_daemon ... bad lion */ Index: nml.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/nml/nml.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** nml.c 24 Sep 2008 08:22:09 -0000 1.14 --- nml.c 4 Oct 2008 18:02:07 -0000 1.15 *************** *** 573,577 **** case 2: strcpy(tmpbuf, bufp); ! newobj->number = atoi(tmpbuf); break; case 3: --- 573,586 ---- case 2: strcpy(tmpbuf, bufp); ! if ( strcmp(tmpbuf, "*") == 0 ) { ! if ( strcmp(newobj->name, "*") == 0 ) { ! newobj->number = 0; ! } else { ! newobj->number = getobjectbyname(newobj->name); ! } ! } else { ! newobj->number = atoi(tmpbuf); ! } ! break; case 3: |
From: <ph3...@us...> - 2008-10-04 17:57:53
|
Update of /cvsroot/linux-decnet/dnprogs/libdaemon In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv5965 Modified Files: dnet_daemon.c Log Message: fixed warning because of signed vs. unsigned Index: dnet_daemon.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdaemon/dnet_daemon.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** dnet_daemon.c 4 Oct 2008 17:55:00 -0000 1.15 --- dnet_daemon.c 4 Oct 2008 17:57:41 -0000 1.16 *************** *** 771,775 **** bind_sockaddr.sdn_objnum = 0; bind_sockaddr.sdn_objnamel = dn_htons(strlen(object)); ! strcpy(bind_sockaddr.sdn_objname, object); status = bind(sockfd, (struct sockaddr *)&bind_sockaddr, --- 771,775 ---- bind_sockaddr.sdn_objnum = 0; bind_sockaddr.sdn_objnamel = dn_htons(strlen(object)); ! strcpy((char *)bind_sockaddr.sdn_objname, object); status = bind(sockfd, (struct sockaddr *)&bind_sockaddr, |
From: <ph3...@us...> - 2008-10-04 17:55:11
|
Update of /cvsroot/linux-decnet/dnprogs/libdaemon In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv5843 Modified Files: dnet_daemon.c Log Message: added support for object numbers to be "*" in /etc/dnetd.conf to signal us we should use getobjectbyname() Index: dnet_daemon.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdaemon/dnet_daemon.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** dnet_daemon.c 23 Sep 2008 14:43:57 -0000 1.14 --- dnet_daemon.c 4 Oct 2008 17:55:00 -0000 1.15 *************** *** 683,687 **** case 2: strcpy(tmpbuf, bufp); ! newobj->number = atoi(tmpbuf); break; case 3: --- 683,695 ---- case 2: strcpy(tmpbuf, bufp); ! if ( strcmp(tmpbuf, "*") == 0 ) { ! if ( strcmp(newobj->name, "*") == 0 ) { ! newobj->number = 0; ! } else { ! newobj->number = getobjectbyname(newobj->name); ! } ! } else { ! newobj->number = atoi(tmpbuf); ! } break; case 3: |
From: <ph3...@us...> - 2008-10-04 16:33:49
|
Update of /cvsroot/linux-decnet/dnprogs/libdnet In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32606 Modified Files: getobjectbyX.c Log Message: added support for object name/num lookup via /etc/dnetd.conf Index: getobjectbyX.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdnet/getobjectbyX.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** getobjectbyX.c 4 Oct 2008 15:56:53 -0000 1.2 --- getobjectbyX.c 4 Oct 2008 16:33:42 -0000 1.3 *************** *** 15,18 **** --- 15,19 ---- */ + #include <stdio.h> #include <string.h> #include <errno.h> *************** *** 23,26 **** --- 24,29 ---- #include <netdnet/dnetdb.h> + #define DNETD_FILE SYSCONF_PREFIX "/etc/dnetd.conf" + static char * _dnet_objhinum_string = NULL; static int _dnet_objhinum_handling = DNOBJHINUM_ERROR; *************** *** 196,199 **** --- 199,259 ---- } + int getobjectbyname_dnetd(char * name) { + FILE * dnd; + int found = -1; + int ret; + int curr; + char line[1024], cname[16], rest[1024]; + + cname[15] = 0; // work around bugy *scanf()s + + if ( (dnd = fopen(DNETD_FILE, "r")) == NULL ) { + return -1; + } + + while (fgets(line, 1024, dnd) != NULL) { + if ( sscanf(line, "%15s %i %1024s\n", cname, &curr, rest) == 3 ) { + if ( *cname != '#' && strcasecmp(name, cname) == 0 ) { + found = curr; + break; + } + } + } + + fclose(dnd); + + if ( found == -1 ) + errno = ENOENT; + + return found; + } + + char * getobjectbynumber_dnetd(int num) { + FILE * dnd; + int curr; + static char cname[16]; // this is not thread safe + char line[1024], rest[1024]; + + cname[15] = 0; // work around bugy *scanf()s + + if ( (dnd = fopen(DNETD_FILE, "r")) == NULL ) { + return NULL; + } + + while (fgets(line, 1024, dnd) != NULL) { + if ( sscanf(line, "%15s %i %1024s\n", cname, &curr, rest) == 3 ) { + if ( *cname != '#' && num == curr ) { + fclose(dnd); + return cname; + } + } + } + + fclose(dnd); + + errno = ENOENT; + return NULL; + } + int getobjectbyname(char * name) { int num; *************** *** 201,205 **** if ( (num = getobjectbyname_nis(name)) == -1 ) ! num = getobjectbyname_static(name); if ( num != -1 ) --- 261,266 ---- if ( (num = getobjectbyname_nis(name)) == -1 ) ! if ( (num = getobjectbyname_dnetd(name)) == -1 ) ! num = getobjectbyname_static(name); if ( num != -1 ) *************** *** 224,228 **** if ( (rname = getobjectbynumber_nis(number)) == NULL ) ! rname = getobjectbynumber_static(number); if ( rname == NULL ) { --- 285,290 ---- if ( (rname = getobjectbynumber_nis(number)) == NULL ) ! if ( (rname = getobjectbynumber_dnetd(number)) == NULL ) ! rname = getobjectbynumber_static(number); if ( rname == NULL ) { |
From: <ph3...@us...> - 2008-10-04 15:56:59
|
Update of /cvsroot/linux-decnet/dnprogs/include/netdnet In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30496/include/netdnet Modified Files: dnetdb.h Log Message: added dnet_setobjhinum_handling() and DNOBJHINUM_RESET(reset to (user)defaults) Index: dnetdb.h =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/include/netdnet/dnetdb.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** dnetdb.h 29 Sep 2008 14:08:23 -0000 1.6 --- dnetdb.h 4 Oct 2008 15:56:52 -0000 1.7 *************** *** 28,31 **** --- 28,32 ---- extern struct nodeent *getnodebyname(const char *name); + extern int dnet_setobjhinum_handling(int handling, int min); extern int getobjectbyname(char * name); extern int getobjectbynumber(int number, char * name, size_t name_len); *************** *** 78,84 **** #define DNOBJ_HINUM_DEF "error" #define DNOBJHINUM_ERROR -1 ! #define DNOBJHINUM_ZERO 0 ! #define DNOBJHINUM_RETURN 1 #define DNOBJHINUM_ALWAYSZERO 2 --- 79,86 ---- #define DNOBJ_HINUM_DEF "error" + #define DNOBJHINUM_RESET -128 #define DNOBJHINUM_ERROR -1 ! #define DNOBJHINUM_RETURN 0 ! #define DNOBJHINUM_ZERO 1 #define DNOBJHINUM_ALWAYSZERO 2 |
From: <ph3...@us...> - 2008-10-04 15:56:59
|
Update of /cvsroot/linux-decnet/dnprogs/libdnet In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30496/libdnet Modified Files: getobjectbyX.c Log Message: added dnet_setobjhinum_handling() and DNOBJHINUM_RESET(reset to (user)defaults) Index: getobjectbyX.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdnet/getobjectbyX.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** getobjectbyX.c 29 Sep 2008 14:08:23 -0000 1.1 --- getobjectbyX.c 4 Oct 2008 15:56:53 -0000 1.2 *************** *** 44,47 **** --- 44,65 ---- }; + int dnet_setobjhinum_handling (int handling, int min) { + if ( handling == DNOBJHINUM_RESET ) { + _dnet_objhinum_string = NULL; + dnet_checkobjectnumber(256); + return 0; + } + + if ( min ) { + dnet_checkobjectnumber(256); + if ( _dnet_objhinum_handling > handling ) + return 1; + } + + _dnet_objhinum_handling = handling; + + return 0; + } + int dnet_checkobjectnumber (int num) { *************** *** 54,64 **** if ( !strcasecmp(_dnet_objhinum_string, "error") ) { ! _dnet_objhinum_handling = DNOBJHINUM_ERROR; // error case } else if ( !strcasecmp(_dnet_objhinum_string, "zero") ) { ! _dnet_objhinum_handling = DNOBJHINUM_ZERO; // return as object number 0 } else if ( !strcasecmp(_dnet_objhinum_string, "return") ) { ! _dnet_objhinum_handling = DNOBJHINUM_RETURN; // return as object number unchanged } else if ( !strcasecmp(_dnet_objhinum_string, "alwayszero") ) { ! _dnet_objhinum_handling = DNOBJHINUM_ALWAYSZERO; // specal case to prevent app from using numbered objects } } --- 72,82 ---- if ( !strcasecmp(_dnet_objhinum_string, "error") ) { ! dnet_setobjhinum_handling(DNOBJHINUM_ERROR, 0); // error case } else if ( !strcasecmp(_dnet_objhinum_string, "zero") ) { ! dnet_setobjhinum_handling(DNOBJHINUM_ZERO, 0); // return as object number 0 } else if ( !strcasecmp(_dnet_objhinum_string, "return") ) { ! dnet_setobjhinum_handling(DNOBJHINUM_RETURN, 0); // return as object number unchanged } else if ( !strcasecmp(_dnet_objhinum_string, "alwayszero") ) { ! dnet_setobjhinum_handling(DNOBJHINUM_ALWAYSZERO, 0); // specal case to prevent app from using numbered objects } } |
From: <chr...@us...> - 2008-10-04 14:45:57
|
Update of /cvsroot/linux-decnet/dnprogs/phone In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv26499/phone Modified Files: backend.c Log Message: Get rid of a warning ... leaving dozens of others, sigh Index: backend.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/phone/backend.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** backend.c 4 Oct 2008 10:32:00 -0000 1.6 --- backend.c 4 Oct 2008 14:45:49 -0000 1.7 *************** *** 282,286 **** int out_fd; struct sockaddr_dn out_sockaddr; ! int len_out_sockaddr = sizeof(struct sockaddr_dn); int len; int i; --- 282,286 ---- int out_fd; struct sockaddr_dn out_sockaddr; ! unsigned int len_out_sockaddr = sizeof(struct sockaddr_dn); int len; int i; |
From: <chr...@us...> - 2008-10-04 14:44:14
|
Update of /cvsroot/linux-decnet/dnprogs/libdnet In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv26418/libdnet Modified Files: dnet_conn.c Log Message: Add a timeout to dnet_conn connections. Index: dnet_conn.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdnet/dnet_conn.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** dnet_conn.c 21 Oct 2001 14:24:00 -0000 1.7 --- dnet_conn.c 4 Oct 2008 14:44:03 -0000 1.8 *************** *** 1,4 **** --- 1,5 ---- /****************************************************************************** (c) 1995-1998 E.M. Serrat ems...@ge... + (c) 2008 Christine Caulfield chr...@go... This library is free software; you can redistribute it and/or *************** *** 162,165 **** --- 163,167 ---- struct accessdata_dn access; int s; + struct timeval timeout = {60, 0}; errno = EINVAL; *************** *** 230,233 **** --- 232,237 ---- } + setsockopt(s, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(timeout)); + if (connect(s, (struct sockaddr *)&saddr, sizeof(saddr)) < 0) goto out_err; |
From: <chr...@us...> - 2008-10-04 12:31:57
|
Update of /cvsroot/linux-decnet/latd/debian In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19325/debian Modified Files: changelog Log Message: OK, this is really 1.28 Index: changelog =================================================================== RCS file: /cvsroot/linux-decnet/latd/debian/changelog,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -r1.28 -r1.29 *** changelog 4 Oct 2008 12:12:22 -0000 1.28 --- changelog 4 Oct 2008 12:31:51 -0000 1.29 *************** *** 4,7 **** --- 4,8 ---- * Get rid of some compile-time warnings. * Fix a missing header with newer compilers + * Fix debian build so it works with DH_COMPAT=5 -- Christine Caulfield <Chr...@go...> Sat, 04 Oct 2008 13:04:51 +0100 |
From: <chr...@us...> - 2008-10-04 12:29:27
|
Update of /cvsroot/linux-decnet/latd/debian In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19171/debian Modified Files: rules Log Message: Fix some more debian things for debhelper 5 Index: rules =================================================================== RCS file: /cvsroot/linux-decnet/latd/debian/rules,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** rules 19 Dec 2006 15:11:13 -0000 1.10 --- rules 4 Oct 2008 12:29:22 -0000 1.11 *************** *** 16,20 **** -make clean -rm -f `find . -name "*~"` ! -rm -rf debian/tmp `find debian/* -type d ! -name CVS ` debian/files* core -rm -f debian/*substvars -rm -rf BUILD RPMS .deps --- 16,20 ---- -make clean -rm -f `find . -name "*~"` ! -rm -rf debian/latd `find debian/* -type d ! -name CVS ` debian/files* core -rm -f debian/*substvars -rm -rf BUILD RPMS .deps *************** *** 30,37 **** binary-arch: checkroot build $(checkdir) ! install -d debian/tmp/etc ! install -d debian/tmp/usr/share ! make install DESTDIR=`pwd`/debian/tmp ! mv debian/tmp/etc/latd.conf.sample debian/tmp/etc/latd.conf dh_installdirs dh_installchangelogs --- 30,37 ---- binary-arch: checkroot build $(checkdir) ! install -d debian/latd/etc ! install -d debian/latd/usr/share ! make install DESTDIR=`pwd`/debian/latd ! cp latd.conf.sample debian/latd/etc/latd.conf dh_installdirs dh_installchangelogs *************** *** 40,44 **** dh_installinit dh_strip ! dh_movefiles dh_compress dh_fixperms --- 40,44 ---- dh_installinit dh_strip ! dh_movefiles -platd --sourcedir=debian/latd dh_compress dh_fixperms |
From: <chr...@us...> - 2008-10-04 12:16:22
|
Update of /cvsroot/linux-decnet/latd/debian In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18586/debian Added Files: compat Removed Files: conffiles Log Message: Fix up some debianisms --- NEW FILE: compat --- 5 --- conffiles DELETED --- |
From: <chr...@us...> - 2008-10-04 12:12:35
|
Update of /cvsroot/linux-decnet/latd In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18442 Modified Files: aclocal.m4 configure.in Log Message: Version 1.28 Index: aclocal.m4 =================================================================== RCS file: /cvsroot/linux-decnet/latd/aclocal.m4,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** aclocal.m4 4 Oct 2008 09:54:57 -0000 1.6 --- aclocal.m4 4 Oct 2008 12:12:22 -0000 1.7 *************** *** 1,6 **** ! # generated automatically by aclocal 1.10.1 -*- Autoconf -*- ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ! # 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,6 ---- ! # generated automatically by aclocal 1.7.9 -*- Autoconf -*- ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 [...5335 lines suppressed...] - rm -rf conftest.dir - mkdir conftest.dir - echo GrepMe > conftest.dir/file - AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) - rm -rf conftest.dir - if test -s conftest.tar; then - AM_RUN_LOG([$am__untar <conftest.tar]) - grep GrepMe conftest.dir/file >/dev/null 2>&1 && break - fi - done - rm -rf conftest.dir - - AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) - AC_MSG_RESULT([$am_cv_prog_tar_$1])]) - AC_SUBST([am__tar]) - AC_SUBST([am__untar]) - ]) # _AM_PROG_TAR - - m4_include([acinclude.m4]) --- 4842,4843 ---- Index: configure.in =================================================================== RCS file: /cvsroot/linux-decnet/latd/configure.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** configure.in 24 Aug 2008 13:18:16 -0000 1.17 --- configure.in 4 Oct 2008 12:12:22 -0000 1.18 *************** *** 3,7 **** dnl Checks that we are given a good source directory. AC_INIT(latcp.cc) ! AM_INIT_AUTOMAKE(latd, 1.27) dnl Checks for programs. --- 3,7 ---- dnl Checks that we are given a good source directory. AC_INIT(latcp.cc) ! AM_INIT_AUTOMAKE(latd, 1.28) dnl Checks for programs. |
From: <chr...@us...> - 2008-10-04 12:12:33
|
Update of /cvsroot/linux-decnet/latd/debian In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18442/debian Modified Files: changelog Log Message: Version 1.28 Index: changelog =================================================================== RCS file: /cvsroot/linux-decnet/latd/debian/changelog,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** changelog 4 Oct 2008 09:54:58 -0000 1.27 --- changelog 4 Oct 2008 12:12:22 -0000 1.28 *************** *** 5,8 **** --- 5,9 ---- * Fix a missing header with newer compilers + -- Christine Caulfield <Chr...@go...> Sat, 04 Oct 2008 13:04:51 +0100 latd (1.27) unstable; urgency=low |
From: <chr...@us...> - 2008-10-04 11:20:36
|
Update of /cvsroot/linux-decnet/dnprogs/dntask In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15251/dntask Modified Files: dntask.1 Log Message: Add -T to man pages Index: dntask.1 =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dntask/dntask.1,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** dntask.1 23 Sep 2008 13:19:22 -0000 1.5 --- dntask.1 4 Oct 2008 11:20:33 -0000 1.6 *************** *** 63,66 **** --- 63,70 ---- 0 is given then dntask will wait forever (or until you kill it). .TP + .I "\-T connect timeout" + Specifies the maximum amount of time the command will wait to establish a connection + with the remote node. a 0 here will cause it to wait forever. The default is 60 seconds + .TP .I \-h \-? Displays help for using the command. |
From: <chr...@us...> - 2008-10-04 11:20:36
|
Update of /cvsroot/linux-decnet/dnprogs/dnlogin In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15251/dnlogin Modified Files: dnlogin.1 Log Message: Add -T to man pages Index: dnlogin.1 =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnlogin/dnlogin.1,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** dnlogin.1 22 Oct 2005 11:01:35 -0000 1.2 --- dnlogin.1 4 Oct 2008 11:20:33 -0000 1.3 *************** *** 33,36 **** --- 33,40 ---- by 0x or 0X). .TP + .I "\-T connect timeout" + Specifies the maximum amount of time the command will wait to establish a connection + with the remote node. a 0 here will cause it to wait forever. The default is 60 seconds + .TP .I \-h \-? Displays help for using the command. |
From: <chr...@us...> - 2008-10-04 11:20:36
|
Update of /cvsroot/linux-decnet/dnprogs/dncopy In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15251/dncopy Modified Files: dncopy.1 Log Message: Add -T to man pages Index: dncopy.1 =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dncopy/dncopy.1,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** dncopy.1 20 Aug 2008 12:43:58 -0000 1.10 --- dncopy.1 4 Oct 2008 11:20:33 -0000 1.11 *************** *** 161,164 **** --- 161,168 ---- .I -P. .TP + .I "\-T connect timeout" + Specifies the maximum amount of time the command will wait to establish a connection + with the remote node. a 0 here will cause it to wait forever. The default is 60 seconds + .TP .I \-E Ignore errors opening output files. This is handy if you are sending a lot |
From: <chr...@us...> - 2008-10-04 11:20:36
|
Update of /cvsroot/linux-decnet/dnprogs/dndir In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15251/dndir Modified Files: dndir.1 Log Message: Add -T to man pages Index: dndir.1 =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dndir/dndir.1,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** dndir.1 20 Aug 2008 12:43:58 -0000 1.4 --- dndir.1 4 Oct 2008 11:20:33 -0000 1.5 *************** *** 61,64 **** --- 61,68 ---- if you did not ask for the size to be displayed. .TP + .I "\-T connect timeout" + Specifies the maximum amount of time the command will wait to establish a connection + with the remote node. a 0 here will cause it to wait forever. The default is 60 seconds + .TP .I "\-e" Show (nearly) everything about the file. Like DIR/FULL |
From: <chr...@us...> - 2008-10-04 11:20:36
|
Update of /cvsroot/linux-decnet/dnprogs/dnsubmit In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15251/dnsubmit Modified Files: dnsubmit.1 Log Message: Add -T to man pages Index: dnsubmit.1 =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnsubmit/dnsubmit.1,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** dnsubmit.1 20 Aug 2008 12:43:58 -0000 1.5 --- dnsubmit.1 4 Oct 2008 11:20:33 -0000 1.6 *************** *** 34,37 **** --- 34,41 ---- .SH OPTIONS .TP + .I "\-T connect timeout" + Specifies the maximum amount of time the command will wait to establish a connection + with the remote node. a 0 here will cause it to wait forever. The default is 60 seconds + .TP .I \-h \-? Displays help for using the command. |
From: <chr...@us...> - 2008-10-04 11:20:36
|
Update of /cvsroot/linux-decnet/dnprogs/dndel In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15251/dndel Modified Files: dndel.1 Log Message: Add -T to man pages Index: dndel.1 =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dndel/dndel.1,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** dndel.1 20 Aug 2008 12:43:58 -0000 1.3 --- dndel.1 4 Oct 2008 11:20:33 -0000 1.4 *************** *** 32,35 **** --- 32,39 ---- Verbose. Print the names of files that have been deleted .TP + .I "\-T connect timeout" + Specifies the maximum amount of time the command will wait to establish a connection + with the remote node. a 0 here will cause it to wait forever. The default is 60 seconds + .TP .I \-h \-? Displays help for using the command. |
From: <chr...@us...> - 2008-10-04 11:15:41
|
Update of /cvsroot/linux-decnet/dnprogs/dntask In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14849/dntask Modified Files: dntask.c Log Message: I've changed my mind, the default connect timeout is now 60 seconds Index: dntask.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dntask/dntask.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** dntask.c 4 Oct 2008 10:22:29 -0000 1.9 --- dntask.c 4 Oct 2008 11:15:32 -0000 1.10 *************** *** 33,37 **** static int sockfd; static int timeout = 60; ! static int connect_timeout = 20; struct sockaddr_dn sockaddr; --- 33,37 ---- static int sockfd; static int timeout = 60; ! static int connect_timeout = 60; struct sockaddr_dn sockaddr; *************** *** 487,491 **** fprintf(f, " -i Interact with the command procedure\n"); fprintf(f, " -t Timeout (in seconds) for interactive command procedure input\n"); ! fprintf(f, " -T Connect timeout (in seconds)\n"); fprintf(f, " -b Treat received data as binary data\n"); fprintf(f, " -? -h display this help message\n"); --- 487,491 ---- fprintf(f, " -i Interact with the command procedure\n"); fprintf(f, " -t Timeout (in seconds) for interactive command procedure input\n"); ! fprintf(f, " -T <secs> Connect timeout (default 60 seconds)\n"); fprintf(f, " -b Treat received data as binary data\n"); fprintf(f, " -? -h display this help message\n"); |
From: <chr...@us...> - 2008-10-04 11:15:40
|
Update of /cvsroot/linux-decnet/dnprogs/dnlogin In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14849/dnlogin Modified Files: dnlogin.c Log Message: I've changed my mind, the default connect timeout is now 60 seconds Index: dnlogin.c =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnlogin/dnlogin.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** dnlogin.c 3 Oct 2008 09:09:00 -0000 1.19 --- dnlogin.c 4 Oct 2008 11:15:32 -0000 1.20 *************** *** 114,118 **** fprintf(f, " -V show version number\n"); fprintf(f, " -e <char> set exit char\n"); ! fprintf(f, " -T <secs> Connect timeout (default 20 seconds)\n"); fprintf(f, " -d <mask> debug information\n"); --- 114,118 ---- fprintf(f, " -V show version number\n"); fprintf(f, " -e <char> set exit char\n"); ! fprintf(f, " -T <secs> connect timeout (default 60 seconds)\n"); fprintf(f, " -d <mask> debug information\n"); *************** *** 124,128 **** { int opt; ! int connect_timeout = 20; // Deal with command-line arguments. --- 124,128 ---- { int opt; ! int connect_timeout = 60; // Deal with command-line arguments. |
From: <chr...@us...> - 2008-10-04 11:15:40
|
Update of /cvsroot/linux-decnet/dnprogs/dnsubmit In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14849/dnsubmit Modified Files: dnsubmit.cc Log Message: I've changed my mind, the default connect timeout is now 60 seconds Index: dnsubmit.cc =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnsubmit/dnsubmit.cc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** dnsubmit.cc 4 Oct 2008 10:28:04 -0000 1.4 --- dnsubmit.cc 4 Oct 2008 11:15:32 -0000 1.5 *************** *** 48,52 **** fprintf(f,"\nOptions:\n"); fprintf(f," -? -h display this help message\n"); ! fprintf(f," -T <secs> Connect timeout (Default 20)\n"); fprintf(f," -v increase verbosity\n"); fprintf(f," -V show version number\n"); --- 48,52 ---- fprintf(f,"\nOptions:\n"); fprintf(f," -? -h display this help message\n"); ! fprintf(f," -T <secs> connect timeout (default 60)\n"); fprintf(f," -v increase verbosity\n"); fprintf(f," -V show version number\n"); *************** *** 126,130 **** int verbose = 0; bool dnprint = false; ! int connect_timeout = 20; // Work out the command name --- 126,130 ---- int verbose = 0; bool dnprint = false; ! int connect_timeout = 60; // Work out the command name |
From: <chr...@us...> - 2008-10-04 11:15:40
|
Update of /cvsroot/linux-decnet/dnprogs/dncopy In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14849/dncopy Modified Files: dncopy.cc Log Message: I've changed my mind, the default connect timeout is now 60 seconds Index: dncopy.cc =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dncopy/dncopy.cc,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** dncopy.cc 4 Oct 2008 10:18:28 -0000 1.14 --- dncopy.cc 4 Oct 2008 11:15:32 -0000 1.15 *************** *** 63,67 **** int printfile = 0; int flags = 0; ! int connect_timeout = 20; char opt; char protection[255]={'\0'}; --- 63,67 ---- int printfile = 0; int flags = 0; ! int connect_timeout = 60; char opt; char protection[255]={'\0'}; *************** *** 366,370 **** fprintf(f, " -P (s)print file to SYS$PRINT\n"); fprintf(f, " -D (s)delete file on close. Only really useful with -P\n"); ! fprintf(f, " -T <secs> connect timeout in seconds (default 20)\n"); fprintf(f, " -V show version number\n"); fprintf(f, "\n"); --- 366,370 ---- fprintf(f, " -P (s)print file to SYS$PRINT\n"); fprintf(f, " -D (s)delete file on close. Only really useful with -P\n"); ! fprintf(f, " -T <secs> connect timeout in seconds (default 60)\n"); fprintf(f, " -V show version number\n"); fprintf(f, "\n"); |