multisuck-cvs Mailing List for Multisuck: Multi-server/conn news suck
Status: Beta
Brought to you by:
conrads
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
(2) |
|---|
|
From: <co...@us...> - 2002-12-20 03:23:49
|
Update of /cvsroot/multisuck/multisuck
In directory sc8-pr-cvs1:/tmp/cvs-serv10588
Modified Files:
Makefile.am Makefile.in suck_util.c
Log Message:
Fixed glob flags, added optimization flags for compiler, modified a few limits
Index: Makefile.am
===================================================================
RCS file: /cvsroot/multisuck/multisuck/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Makefile.am 6 Jun 2002 22:36:38 -0000 1.4
--- Makefile.am 20 Dec 2002 03:23:46 -0000 1.5
***************
*** 7,11 ****
msuck_SOURCES = filter.c getarticles.c main.c newsrc.c suck_group.c\
suck_server.c suck_util.c xover.c
! AM_CFLAGS = -W -Wall -Wnested-externs -Wcast-align\
! -Wmissing-declarations -Wstrict-prototypes
EXTRA_DIST = include samples
--- 7,14 ----
msuck_SOURCES = filter.c getarticles.c main.c newsrc.c suck_group.c\
suck_server.c suck_util.c xover.c
! AM_CFLAGS = -W -Wall -Wnested-externs -Wcast-align -Wmissing-declarations \
! -Wstrict-prototypes -ansi -fno-builtin \
! -funroll-loops -fstrength-reduce \
! -fthread-jumps -frerun-cse-after-loop -fexpensive-optimizations \
! -fschedule-insns2 -freg-struct-return
EXTRA_DIST = include samples
Index: Makefile.in
===================================================================
RCS file: /cvsroot/multisuck/multisuck/Makefile.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Makefile.in 21 Nov 2002 07:43:45 -0000 1.6
--- Makefile.in 20 Dec 2002 03:23:46 -0000 1.7
***************
*** 80,85 ****
suck_server.c suck_util.c xover.c
! AM_CFLAGS = -W -Wall -Wnested-externs -Wcast-align\
! -Wmissing-declarations -Wstrict-prototypes
EXTRA_DIST = include samples
--- 80,88 ----
suck_server.c suck_util.c xover.c
! AM_CFLAGS = -W -Wall -Wnested-externs -Wcast-align -Wmissing-declarations \
! -Wstrict-prototypes -ansi -fno-builtin \
! -funroll-loops -fstrength-reduce \
! -fthread-jumps -frerun-cse-after-loop -fexpensive-optimizations \
! -fschedule-insns2 -freg-struct-return
EXTRA_DIST = include samples
Index: suck_util.c
===================================================================
RCS file: /cvsroot/multisuck/multisuck/suck_util.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** suck_util.c 21 Nov 2002 07:43:45 -0000 1.5
--- suck_util.c 20 Dec 2002 03:23:46 -0000 1.6
***************
*** 308,316 ****
int i;
! if (glob("/tmp/article.*", 0, NULL, &globstuff) != 0)
perror("cleanup(): glob error");
! if (glob("/tmp/fetch.*", GLOB_APPEND, NULL, &globstuff) != 0)
perror("cleanup(): glob error");
! if (glob("/tmp/xover.*", GLOB_APPEND, NULL, &globstuff) != 0)
perror("cleanup(): glob error");
if (globstuff.gl_pathc > 0)
--- 308,316 ----
int i;
! if (glob("/tmp/article.*", GLOB_NOCHECK, NULL, &globstuff) != 0)
perror("cleanup(): glob error");
! if (glob("/tmp/fetch.*", GLOB_NOCHECK|GLOB_APPEND, NULL, &globstuff) != 0)
perror("cleanup(): glob error");
! if (glob("/tmp/xover.*", GLOB_NOCHECK|GLOB_APPEND, NULL, &globstuff) != 0)
perror("cleanup(): glob error");
if (globstuff.gl_pathc > 0)
***************
*** 444,449 ****
}
! if ((val = strtok(NULL, " \t\n")) == NULL) /* blank value is *not*
! * OK */
{
fprintf(stderr, "read_config(): variable/server %s has NULL value!\n", var);
--- 444,448 ----
}
! if ((val = strtok(NULL, " \t\n")) == NULL) /* blank value is *not* OK */
{
fprintf(stderr, "read_config(): variable/server %s has NULL value!\n", var);
|
|
From: <co...@us...> - 2002-12-20 03:23:49
|
Update of /cvsroot/multisuck/multisuck/include In directory sc8-pr-cvs1:/tmp/cvs-serv10588/include Modified Files: msuck.h Log Message: Fixed glob flags, added optimization flags for compiler, modified a few limits Index: msuck.h =================================================================== RCS file: /cvsroot/multisuck/multisuck/include/msuck.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** msuck.h 21 Nov 2002 07:43:45 -0000 1.3 --- msuck.h 20 Dec 2002 03:23:46 -0000 1.4 *************** *** 35,39 **** #define MAXNEWSRCS 64 /* ridiculously high, but let's be generous */ #define MAXREGEXES 4096 /* max filters in filters file */ ! #define MAX_LOCAL_GROUPS 14400 /* max groups on local server -- need * to lose this! */ #define MAX_REMOTE_GROUPS 100 /* max groups on remote server -- --- 35,39 ---- #define MAXNEWSRCS 64 /* ridiculously high, but let's be generous */ #define MAXREGEXES 4096 /* max filters in filters file */ ! #define MAX_LOCAL_GROUPS 12350 /* max groups on local server -- need * to lose this! */ #define MAX_REMOTE_GROUPS 100 /* max groups on remote server -- |
|
From: <co...@us...> - 2002-11-27 05:41:13
|
Update of /cvsroot/multisuck/multisuck
In directory sc8-pr-cvs1:/tmp/cvs-serv27272
Modified Files:
getarticles.c
Log Message:
Fixed getarticle() not to leave empty files in /tmp if an "article not
available" error occurs.
Index: getarticles.c
===================================================================
RCS file: /cvsroot/multisuck/multisuck/getarticles.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** getarticles.c 10 Jun 2002 04:10:06 -0000 1.3
--- getarticles.c 27 Nov 2002 05:41:10 -0000 1.4
***************
*** 132,135 ****
--- 132,136 ----
fprintf(stderr, "getarticle(): unexpected reply in %s to ARTICLE %s: %s\n", group, artnum, buf);
fclose(artfile);
+ unlink(artpath);
return 0;
}
***************
*** 142,145 ****
--- 143,147 ----
perror("getarticle(): read error on socket while reading article");
fclose(artfile);
+ unlink(artpath);
return -1;
}
***************
*** 150,153 ****
--- 152,156 ----
perror("getarticle(): write error on article file");
fclose(artfile);
+ unlink(artpath);
return -1;
}
|
|
From: <co...@us...> - 2002-11-21 07:43:48
|
Update of /cvsroot/multisuck/multisuck/include In directory sc8-pr-cvs1:/tmp/cvs-serv14089/include Modified Files: msuck.h Log Message: A few more cleanups for auto* Index: msuck.h =================================================================== RCS file: /cvsroot/multisuck/multisuck/include/msuck.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** msuck.h 6 Jun 2002 14:21:06 -0000 1.2 --- msuck.h 21 Nov 2002 07:43:45 -0000 1.3 *************** *** 35,41 **** #define MAXNEWSRCS 64 /* ridiculously high, but let's be generous */ #define MAXREGEXES 4096 /* max filters in filters file */ ! #define MAX_LOCAL_GROUPS 256 /* max groups on local server -- need * to lose this! */ ! #define MAX_REMOTE_GROUPS 256 /* max groups on remote server -- * need to lose this, too! */ --- 35,41 ---- #define MAXNEWSRCS 64 /* ridiculously high, but let's be generous */ #define MAXREGEXES 4096 /* max filters in filters file */ ! #define MAX_LOCAL_GROUPS 14400 /* max groups on local server -- need * to lose this! */ ! #define MAX_REMOTE_GROUPS 100 /* max groups on remote server -- * need to lose this, too! */ |
|
From: <co...@us...> - 2002-11-21 07:42:54
|
Update of /cvsroot/multisuck/multisuck In directory sc8-pr-cvs1:/tmp/cvs-serv13886 Modified Files: main.c Log Message: Slight revision for autoconf (PACKAGE -> PACKAGE_NAME) Index: main.c =================================================================== RCS file: /cvsroot/multisuck/multisuck/main.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** main.c 10 Jun 2002 03:10:42 -0000 1.9 --- main.c 21 Nov 2002 07:42:51 -0000 1.10 *************** *** 64,68 **** pid_t pid; ! fprintf(stderr, "%s version %s\n", PACKAGE, PACKAGE_VERSION); /* remove any old junk in /tmp */ --- 64,68 ---- pid_t pid; ! fprintf(stderr, "%s version %s\n", PACKAGE_NAME, PACKAGE_VERSION); /* remove any old junk in /tmp */ |
|
From: <co...@us...> - 2002-11-21 07:09:01
|
Update of /cvsroot/multisuck/multisuck In directory sc8-pr-cvs1:/tmp/cvs-serv5852 Modified Files: configure.ac Log Message: Bump version number to 1.0.4 Index: configure.ac =================================================================== RCS file: /cvsroot/multisuck/multisuck/configure.ac,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** configure.ac 8 Jun 2002 12:01:30 -0000 1.5 --- configure.ac 21 Nov 2002 07:08:58 -0000 1.6 *************** *** 4,8 **** # ! AC_INIT(multisuck, 1.0.3, co...@co...) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([filter.c]) --- 4,8 ---- # ! AC_INIT(multisuck, 1.0.4, co...@co...) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([filter.c]) |
|
From: <co...@us...> - 2002-11-21 06:59:49
|
Update of /cvsroot/multisuck/multisuck
In directory sc8-pr-cvs1:/tmp/cvs-serv3556
Modified Files:
filter.c
Log Message:
Bug fix to prevent buffer overflow in bad_xref().
Index: filter.c
===================================================================
RCS file: /cvsroot/multisuck/multisuck/filter.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** filter.c 9 Jun 2002 17:59:23 -0000 1.4
--- filter.c 21 Nov 2002 06:59:46 -0000 1.5
***************
*** 295,299 ****
{
/* disregard the : and number */
! while (*ptr != ':')
xrefs[i][j++] = *ptr++;
xrefs[i][j] = '\0';
--- 295,299 ----
{
/* disregard the : and number */
! while ((*ptr != ':') && (*ptr != '\0'))
xrefs[i][j++] = *ptr++;
xrefs[i][j] = '\0';
|
|
From: <co...@us...> - 2002-07-11 21:18:19
|
Update of /cvsroot/multisuck/chess In directory usw-pr-cvs1:/tmp/cvs-serv24755/chess Removed Files: Makefile check.c chess.h main.c move.c movegen.c util.c Log Message: Accidentally committed to the wrong server. :-) --- Makefile DELETED --- --- check.c DELETED --- --- chess.h DELETED --- --- main.c DELETED --- --- move.c DELETED --- --- movegen.c DELETED --- --- util.c DELETED --- |
|
From: <co...@us...> - 2002-06-10 04:10:08
|
Update of /cvsroot/multisuck/multisuck
In directory usw-pr-cvs1:/tmp/cvs-serv328
Modified Files:
getarticles.c
Log Message:
Minor cosmetic changes.
Index: getarticles.c
===================================================================
RCS file: /cvsroot/multisuck/multisuck/getarticles.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** getarticles.c 6 Jun 2002 14:01:39 -0000 1.2
--- getarticles.c 10 Jun 2002 04:10:06 -0000 1.3
***************
*** 9,13 ****
#include "nntp.h"
! extern FILE *sucklog;
extern CONNECTION local, remote;
--- 9,13 ----
#include "nntp.h"
! extern FILE * sucklog;
extern CONNECTION local, remote;
***************
*** 22,26 ****
ihave(char *artpath, char *mess_id)
{
! FILE *artfile;
char linebuf[MAXLINE + 1];
--- 22,26 ----
ihave(char *artpath, char *mess_id)
{
! FILE * artfile;
char linebuf[MAXLINE + 1];
|
|
From: <co...@us...> - 2002-06-10 03:10:45
|
Update of /cvsroot/multisuck/multisuck In directory usw-pr-cvs1:/tmp/cvs-serv21748a Modified Files: main.c Log Message: Slight comments mod. Index: main.c =================================================================== RCS file: /cvsroot/multisuck/multisuck/main.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** main.c 6 Jun 2002 22:43:46 -0000 1.8 --- main.c 10 Jun 2002 03:10:42 -0000 1.9 *************** *** 16,21 **** * * uses "mode reader" on all servers, except for using "ihave" to post articles ! * to the local server and "stat" to test if an article already exists ! * locally * * the main process (the parent) forks a separate process for each remote server --- 16,21 ---- * * uses "mode reader" on all servers, except for using "ihave" to post articles ! * to the local server and "check" to test if an article already exists ! * locally, and of course, "list active" * * the main process (the parent) forks a separate process for each remote server |