openbnc-cvs Mailing List for OpenBNC (Page 2)
Status: Beta
Brought to you by:
andrereis
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(17) |
Jun
(17) |
Jul
(35) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: Mateusz K. <sh...@us...> - 2004-07-07 10:30:40
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1090/openbnc/src Modified Files: openbnc.c Log Message: - Fixed problem with relative paths in configfile. ( banner ) Index: openbnc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/openbnc.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- openbnc.c 6 Jul 2004 19:42:29 -0000 1.9 +++ openbnc.c 7 Jul 2004 10:30:30 -0000 1.10 @@ -389,7 +389,11 @@ } printbanner(); // printf(lngtxt(991),configfile); - printf("> Reading config file : %s/%s\n",get_current_dir_name(),configfile); + if ( configfile[0] != '/' ) { + printf("> Reading config file : %s/%s\n",get_current_dir_name(),configfile); + } else { + printf("> Reading config file : %s\n",configfile); + } // printf(lngtxt(992),langname); // ap_snprintf(logfile,sizeof(logfile),lngtxt(993)); printf("> Logging set to : %s/%s",get_current_dir_name(),logfile); |
From: Mateusz K. <sh...@us...> - 2004-07-06 19:42:42
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15594/openbnc/src Modified Files: openbnc.c Log Message: - Little change with --pid-file command. ( fixed problem if pidfile == NULL ) Index: openbnc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/openbnc.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- openbnc.c 6 Jul 2004 19:37:12 -0000 1.8 +++ openbnc.c 6 Jul 2004 19:42:29 -0000 1.9 @@ -427,10 +427,11 @@ /* creating background */ /* UGLY! */ - if ( t_pid == NULL ) { - pidfile = fopen(lngtxt(1003),"w"); - } else { + if ( strlen(t_pid) > 0 ) { pidfile = fopen(t_pid,"w"); + } else { + + pidfile = fopen(lngtxt(1003),"w"); } if(pidfile==NULL) |
From: Mateusz K. <sh...@us...> - 2004-07-06 19:37:21
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14275/openbnc/src Modified Files: openbnc.c Log Message: - Add --pid-file | -p to command line ( write pid to specified file ) Index: openbnc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/openbnc.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- openbnc.c 6 Jul 2004 13:47:50 -0000 1.7 +++ openbnc.c 6 Jul 2004 19:37:12 -0000 1.8 @@ -228,7 +228,7 @@ { int rc; char *pt; - char buf[200]; + char buf[200],t_pid[200]; char *bversion; FILE *pidfile,*conffile; int i,t_uid,t_gid=0; @@ -239,11 +239,13 @@ strcpy(configfile,"openbnc.conf"); } */ + + + strcpy(configfile,"openbnc.conf"); - - /* Checking parametrs */ + /* Checking parametrs */ if ( argc > 1 ) { @@ -265,6 +267,22 @@ } } + /* --pid-file | -p - Write pid to specified file */ + if ( !strcasecmp("--pid-file",argv[i]) || !strcasecmp("-p",argv[i]) ) { + if ( argv[i+1] != NULL ) { + + if ( strlen(argv[i+1]) < 201 ) { + strcpy(t_pid,argv[i+1]); + } else { + printf("ERROR: Pid file name too long!\n"); + } + + } else { + printf("ERROR: --pid-file without parametr!\n"); + exit(127); + } + } + /* --help | -h - Display Help */ if ( !strcasecmp("--help",argv[i]) || !strcasecmp("-h",argv[i]) ) { printf("%s %s\n\n",APPNAME,APPVER); @@ -273,6 +291,7 @@ printf("-h, --help Display help and exit\n"); printf("-v, --version Display Version and exit\n"); printf("-c, --config [file] Read configuration from specified file\n"); + printf("-p, --pid-file [file] Write pid to specified file\n"); printf("-u, --user [user] Run as specific user [*]\n"); printf("-g, --group [group] Run as specific group [*]\n"); printf("-l, --user-limit Max no. of users\n"); @@ -406,12 +425,19 @@ exit (0x0); } /* creating background */ - pidfile = fopen(lngtxt(1003),"w"); - if(pidfile==NULL) - { - printf(lngtxt(1004)); - exit(0x0); - } + + /* UGLY! */ + if ( t_pid == NULL ) { + pidfile = fopen(lngtxt(1003),"w"); + } else { + pidfile = fopen(t_pid,"w"); + } + + if(pidfile==NULL) + { + printf(lngtxt(1004)); + exit(0x0); + } if(mainlog!=NULL) { fclose(mainlog); |
From: Mateusz K. <sh...@us...> - 2004-07-06 13:47:59
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9537/openbnc/src Modified Files: openbnc.c Log Message: - Add command line : -u ( setting uid ) -g ( setting gid ) ( gid || uid == 0 is deny ) ( ex. usage ./openbnc -u foo -g bar ) Index: openbnc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/openbnc.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- openbnc.c 6 Jul 2004 11:03:49 -0000 1.6 +++ openbnc.c 6 Jul 2004 13:47:50 -0000 1.7 @@ -63,6 +63,10 @@ #include <p_global.h> #include <p_data.h> +#include <sys/types.h> +#include <unistd.h> +#include <pwd.h> +#include <grp.h> int slice=0; @@ -146,6 +150,36 @@ return; } + +int user_uid(char user[255]) { + + struct passwd *passwd; + + passwd=getpwnam(user); + + if ( passwd != 0 ) { + return(passwd->pw_uid); + } else { + printf("ERROR: No such user %s\n",user); + exit(127); + } +} + +int group_gid(char grp[255]) { + + struct group *group; + + group=getgrnam(grp); + + if ( group != NULL ) { + return(group->gr_gid); + } else { + printf("ERROR: No such group %s\n",grp); + exit(127); + } +} + + /* main bounce-loop */ int bncmain(void) { @@ -197,22 +231,17 @@ char buf[200]; char *bversion; FILE *pidfile,*conffile; - int i; - - /* Checking uid - IF root -> exit - - it may be really unsecure */ - - if ( getuid() == 0 ) { - printf("Don't run OpenBNC as root!\n"); - exit(127); - } - + int i,t_uid,t_gid=0; /* if(argc>1) { strmncpy(configfile,argv[1],sizeof(configfile)); } else { strcpy(configfile,"openbnc.conf"); } */ + + + strcpy(configfile,"openbnc.conf"); + /* Checking parametrs */ @@ -251,14 +280,71 @@ exit(0); } + /* --user | -u - Run as specific user */ + if ( !strcasecmp("--user",argv[i]) || !strcasecmp("-u",argv[i]) ) { + + if ( getuid() == 0 ) { + + if ( argv[i+1] != NULL ) { + t_uid = user_uid(argv[i+1]); + } else { + printf("ERROR: --user without parametr!\n"); + exit(127); + } + + } else { + + printf("Sorry only root can do that!\n"); + exit(127); + + } + + } + + /* --group | -g - Run as specific group */ + if ( !strcasecmp("--group",argv[i]) || !strcasecmp("-g",argv[i]) ) { + + if ( getuid() == 0 ) { + + if ( argv[i+1] != NULL ) { + t_gid = group_gid(argv[i+1]); + } else { + printf("ERROR: --group without parametr!\n"); + exit(127); + } + + } else { + + printf("Sorry only root can do that!\n"); + exit(127); + + } + + } + } - } else { - - /* if no paramers - reading standard file */ - strcpy(configfile,"openbnc.conf"); + } + + if ( t_gid != 0 ) { + setgid(t_gid); + } + + if ( t_uid != 0 ) { + setuid(t_uid); + } + + + /* Checking uid - IF root -> exit + - it may be really unsecure */ + + if ( getuid() == 0 ) { + printf("Don't run OpenBNC as root!\n"); + exit(127); } + + conffile=fopen(configfile,"r"); if(conffile==NULL) |
From: Mateusz K. <sh...@us...> - 2004-07-06 11:03:58
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10078/openbnc/src Modified Files: openbnc.c Log Message: - Add command line parametrs ( like --help e.t.c ) Index: openbnc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/openbnc.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- openbnc.c 6 Jul 2004 09:37:27 -0000 1.5 +++ openbnc.c 6 Jul 2004 11:03:49 -0000 1.6 @@ -199,17 +199,67 @@ FILE *pidfile,*conffile; int i; + /* Checking uid - IF root -> exit + - it may be really unsecure */ + if ( getuid() == 0 ) { printf("Don't run OpenBNC as root!\n"); exit(127); } - if(argc==2) +/* if(argc>1) { strmncpy(configfile,argv[1],sizeof(configfile)); } else { - strcpy(configfile,"openbnc.conf"); /* rcsid */ - } + strcpy(configfile,"openbnc.conf"); + } */ + + /* Checking parametrs */ + + if ( argc > 1 ) { + + for ( i = 1 ; i < argc ; i++ ) { + + /* --version | -v - Output APPNAME and VERSION */ + if ( !strcasecmp("--version",argv[i]) || !strcasecmp("-v",argv[i]) ) { + printf("%s %s\n",APPNAME,APPVER); + exit(0); + } + + /* --config | -c - Reading config from specify file */ + if ( !strcasecmp("--config",argv[i]) || !strcasecmp("-c",argv[i]) ) { + if ( argv[i+1] != NULL ) { + strcpy(configfile,argv[i+1]); + } else { + printf("ERROR: --config without parametr!\n"); + exit(127); + } + } + + /* --help | -h - Display Help */ + if ( !strcasecmp("--help",argv[i]) || !strcasecmp("-h",argv[i]) ) { + printf("%s %s\n\n",APPNAME,APPVER); + printf("Options :\n"); + printf("---------\n\n"); + printf("-h, --help Display help and exit\n"); + printf("-v, --version Display Version and exit\n"); + printf("-c, --config [file] Read configuration from specified file\n"); + printf("-u, --user [user] Run as specific user [*]\n"); + printf("-g, --group [group] Run as specific group [*]\n"); + printf("-l, --user-limit Max no. of users\n"); + printf("-i, --interval Time between connection attempts to IRC server\n\n"); + exit(0); + } + + } + + } else { + + /* if no paramers - reading standard file */ + strcpy(configfile,"openbnc.conf"); + + } + conffile=fopen(configfile,"r"); if(conffile==NULL) { |
From: Mateusz K. <sh...@us...> - 2004-07-06 09:37:35
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27372/openbnc/src Modified Files: openbnc.c Log Message: - Add get_current_dir_name(); to banner - "Advenced" -> "Advanced" - Add UID and GID to banner - Checking if UID = 0 then exit ( it may be unsecure to run it as root ) Index: openbnc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/openbnc.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- openbnc.c 5 Jul 2004 19:13:24 -0000 1.4 +++ openbnc.c 6 Jul 2004 09:37:27 -0000 1.5 @@ -180,7 +180,7 @@ fflush(stdout); */ - printf("OpenIRC Advenced IRC Bouncer\n"); + printf("OpenIRC Advanced IRC Bouncer\n"); printf("Copyright (C) 2004 The OpenBNC Development Team\n"); printf("Based on psyBNC, by 'the most psychoid'.\n"); @@ -198,6 +198,12 @@ char *bversion; FILE *pidfile,*conffile; int i; + + if ( getuid() == 0 ) { + printf("Don't run OpenBNC as root!\n"); + exit(127); + } + if(argc==2) { strmncpy(configfile,argv[1],sizeof(configfile)); @@ -228,10 +234,10 @@ } printbanner(); // printf(lngtxt(991),configfile); - printf("> Reading config file : %s\n",configfile); + printf("> Reading config file : %s/%s\n",get_current_dir_name(),configfile); // printf(lngtxt(992),langname); // ap_snprintf(logfile,sizeof(logfile),lngtxt(993)); - printf("> Logging set to : %s",logfile); + printf("> Logging set to : %s/%s",get_current_dir_name(),logfile); rc = getini(lngtxt(994),lngtxt(995),INIFILE); if (rc != 0) { printf(lngtxt(996)); @@ -318,7 +324,7 @@ pcontext; if (pid) { // bversion=buildversion(); - printf("%s v%s is running (PID=%i)\n",APPNAME,APPVER,pid); + printf("%s v%s is running (PID=%i, UID=%i, GID=%i)\n",APPNAME,APPVER,pid,getuid(),getgid()); log(LOG_INFO,-1,lngtxt(1008),bversion,pid); fprintf( pidfile,"%d\n",pid); fclose(pidfile); |
From: Mateusz K. <sh...@us...> - 2004-07-05 19:31:04
|
Update of /cvsroot/openbnc/openbnc/menuconf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19234/openbnc/menuconf Modified Files: menuconf.c Log Message: - Fixed problem with writeini() Seg fault Index: menuconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/menuconf.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- menuconf.c 8 Jun 2004 16:07:07 -0000 1.5 +++ menuconf.c 5 Jul 2004 19:30:50 -0000 1.6 @@ -358,7 +358,7 @@ /* conf-file routines */ -#define INIFILE "PSYBNC" +#define INIFILE "OPENBNC" char configfile[]="openbnc.conf"; |
From: Mateusz K. <sh...@us...> - 2004-07-05 19:13:36
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15955/openbnc/src Modified Files: openbnc.c p_version.h Log Message: - Fixed problem with SSL - New banner - Fixes in english.lng ( banner ) Index: p_version.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_version.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- p_version.h 9 Jun 2004 08:53:50 -0000 1.4 +++ p_version.h 5 Jul 2004 19:13:24 -0000 1.5 @@ -17,7 +17,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#define APPNAME "openBNC" +#define APPNAME "OpenBNC" #define APPVER "1.0" #ifdef P_MAIN Index: openbnc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/openbnc.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- openbnc.c 4 Jun 2004 15:31:01 -0000 1.3 +++ openbnc.c 5 Jul 2004 19:13:24 -0000 1.4 @@ -168,7 +168,7 @@ int printbanner(void) { - int i; +/* int i; for(i=979;i<990;i++) { fprintf(stdout,"%s",lngtxt(i)); @@ -178,6 +178,12 @@ if(getuid()==0) fprintf(stdout,lngtxt(990)); fflush(stdout); + */ + + printf("OpenIRC Advenced IRC Bouncer\n"); + printf("Copyright (C) 2004 The OpenBNC Development Team\n"); + printf("Based on psyBNC, by 'the most psychoid'.\n"); + return 0x0; } @@ -221,9 +227,11 @@ exit(0x0); } printbanner(); - printf(lngtxt(991),configfile); - printf(lngtxt(992),langname); - ap_snprintf(logfile,sizeof(logfile),lngtxt(993)); + // printf(lngtxt(991),configfile); + printf("> Reading config file : %s\n",configfile); + // printf(lngtxt(992),langname); + // ap_snprintf(logfile,sizeof(logfile),lngtxt(993)); + printf("> Logging set to : %s",logfile); rc = getini(lngtxt(994),lngtxt(995),INIFILE); if (rc != 0) { printf(lngtxt(996)); @@ -240,8 +248,8 @@ ap_snprintf(me,sizeof(me),"%s",value); rc = getini(lngtxt(998),lngtxt(999),INIFILE); if (rc < 0) { - printf(lngtxt(1000)); - ap_snprintf(value,sizeof(value),lngtxt(1001)); + printf("%s \n",lngtxt(1001)); + // ap_snprintf(value,sizeof(value),lngtxt(1001)); } ap_snprintf(logfile,sizeof(logfile),"%s",value); oldfile(logfile); @@ -309,8 +317,8 @@ } pcontext; if (pid) { - bversion=buildversion(); - printf(lngtxt(1007),bversion,pid); + // bversion=buildversion(); + printf("%s v%s is running (PID=%i)\n",APPNAME,APPVER,pid); log(LOG_INFO,-1,lngtxt(1008),bversion,pid); fprintf( pidfile,"%d\n",pid); fclose(pidfile); |
From: Mateusz K. <sh...@us...> - 2004-07-05 19:13:36
|
Update of /cvsroot/openbnc/openbnc/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15955/openbnc/tools Modified Files: autoconf.c Log Message: - Fixed problem with SSL - New banner - Fixes in english.lng ( banner ) Index: autoconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/autoconf.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- autoconf.c 9 Jun 2004 08:53:50 -0000 1.4 +++ autoconf.c 5 Jul 2004 19:13:25 -0000 1.5 @@ -490,7 +490,7 @@ fprintf(makefile," -keyout key/openbnc.key.pem -nodes\n"); fprintf(makefile," @echo \"Generating self-signed certificate .. \"\n"); fprintf(makefile," @%s req -x509 -days 365 -in key/openbnc.req.pem \\\n",sslbin); - fprintf(makefile," -key key/psybnc.key.pem -out key/openbnc.cert.pem\n"); + fprintf(makefile," -key key/openbnc.key.pem -out key/openbnc.cert.pem\n"); fprintf(makefile," @echo \"Generating fingerprint ..\"\n"); fprintf(makefile," @%s x509 -subject -dates -fingerprint -noout \\\n",sslbin); fprintf(makefile," -in key/openbnc.cert.pem\n"); |
From: Mateusz K. <sh...@us...> - 2004-07-05 19:13:34
|
Update of /cvsroot/openbnc/openbnc/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15955/openbnc/lang Modified Files: english.lng Log Message: - Fixed problem with SSL - New banner - Fixes in english.lng ( banner ) Index: english.lng =================================================================== RCS file: /cvsroot/openbnc/openbnc/lang/english.lng,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- english.lng 24 May 2004 16:44:00 -0000 1.1.1.1 +++ english.lng 5 Jul 2004 19:13:23 -0000 1.2 @@ -1602,7 +1602,7 @@ ; p_socket.c line 293: msg0797=Can't create listening sock on host %s port %d%s (listen) ; p_socket.c line 298: -msg0798=Listening on: %s port %d%sÿ +msg0798=> Listening on: %s port %d%sÿ ; p_socket.c line 299: msg0799=Listener created :%s port %d%s ; p_socket.c line 493: @@ -2020,9 +2020,9 @@ ; psybnc.c line 278: msg1006=PSYBNC.HOSTALLOWS ; psybnc.c line 282: -msg1007=%s started (PID %d)ÿ +msg1007=%s is running (PID %d)ÿ ; psybnc.c line 283: -msg1008=%s started (PID :%d) +msg1008=%s is running (PID :%d) ; p_hash.c line 43: msg1009=PRIVMSG ; p_hash.c line 44: |
From: Nuno A. <nun...@us...> - 2004-06-09 08:54:00
|
Update of /cvsroot/openbnc/openbnc/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31422/openbnc/tools Modified Files: autoconf.c convconf.c makesalt.c Log Message: Index: makesalt.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/makesalt.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- makesalt.c 4 Jun 2004 16:25:48 -0000 1.3 +++ makesalt.c 9 Jun 2004 08:53:50 -0000 1.4 @@ -124,7 +124,7 @@ fprintf(salt,"\n"); fclose(salt); printf("Salt File created. Move the Salt File to a safe location after\n"); - printf("psyBNC was compiled and delete it on your shell. You will need\n"); + printf("OpenBNC was compiled and delete it on your shell. You will need\n"); printf("the File later for update Compiling.\n"); exit (0x0); } Index: autoconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/autoconf.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- autoconf.c 4 Jun 2004 16:25:48 -0000 1.3 +++ autoconf.c 9 Jun 2004 08:53:50 -0000 1.4 @@ -434,7 +434,7 @@ } else printf("No openssl found. Get openssl at www.openssl.org\n"); - config=fopen("/psybnc/config.h","r"); + config=fopen("/openbnc/config.h","r"); if(config!=NULL) { fclose(config); @@ -464,19 +464,19 @@ #endif else fprintf(makefile,"INCLUDE = -I./src/ -I.\n"); - fprintf(makefile,"OBJS = src/psybnc.o src/match.o src/p_client.o src/p_crypt.o src/p_dcc.o src/p_hash.o src/p_idea.o src/p_inifunc.o src/p_link.o src/p_log.o src/p_memory.o src/p_network.o src/p_parse.o src/p_peer.o src/p_server.o src/p_socket.o src/p_string.o src/p_sysmsg.o src/p_userfile.o src/p_uchannel.o src/p_script.o src/p_topology.o src/p_intnet.o src/p_blowfish.o src/p_translate.o src/p_coredns.o src/snprintf.o %s\n",env); + fprintf(makefile,"OBJS = src/openbnc.o src/match.o src/p_client.o src/p_crypt.o src/p_dcc.o src/p_hash.o src/p_idea.o src/p_inifunc.o src/p_link.o src/p_log.o src/p_memory.o src/p_network.o src/p_parse.o src/p_peer.o src/p_server.o src/p_socket.o src/p_string.o src/p_sysmsg.o src/p_userfile.o src/p_uchannel.o src/p_script.o src/p_topology.o src/p_intnet.o src/p_blowfish.o src/p_translate.o src/p_coredns.o src/snprintf.o %s\n",env); if(provi==0) fprintf(makefile,"DEFINE = -DHAVE_CONFIG %s%s%s%s%s%s\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt); else fprintf(makefile,"DEFINE = -DHAVE_PROV_CONFIG %s%s%s%s%s%s\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt); - fprintf(makefile,"TARGET = psybnc\n"); + fprintf(makefile,"TARGET = openbnc\n"); fprintf(makefile,"\n"); fprintf(makefile,"all: $(OBJS)\n"); fprintf(makefile," $(CC) -o $(TARGET) $(CFLAGS) $(OBJS) $(LIBS)\n"); fprintf(makefile," @strip $(TARGET)\n"); if(ssl==0) { - if(!fexists("key/psybnc.cert.pem")) /* only create, if not exist */ + if(!fexists("key/openbnc.cert.pem")) /* only create, if not exist */ { mkdir("key",0700); fprintf(makefile," @echo \"*** GENERATING SSL-KEYS FROM CERTIFICATE **\"\n"); @@ -486,14 +486,14 @@ fprintf(makefile," @echo \"* for the sake of correct Cert-Checking *\"\n"); fprintf(makefile," @echo \"*******************************************\"\n"); fprintf(makefile," @echo \"Generating certificate request .. \"\n"); - fprintf(makefile," @%s req -new -config src/ssl.cnf -out key/psybnc.req.pem \\\n",sslbin); - fprintf(makefile," -keyout key/psybnc.key.pem -nodes\n"); + fprintf(makefile," @%s req -new -config src/ssl.cnf -out key/openbnc.req.pem \\\n",sslbin); + fprintf(makefile," -keyout key/openbnc.key.pem -nodes\n"); fprintf(makefile," @echo \"Generating self-signed certificate .. \"\n"); - fprintf(makefile," @%s req -x509 -days 365 -in key/psybnc.req.pem \\\n",sslbin); - fprintf(makefile," -key key/psybnc.key.pem -out key/psybnc.cert.pem\n"); + fprintf(makefile," @%s req -x509 -days 365 -in key/openbnc.req.pem \\\n",sslbin); + fprintf(makefile," -key key/psybnc.key.pem -out key/openbnc.cert.pem\n"); fprintf(makefile," @echo \"Generating fingerprint ..\"\n"); fprintf(makefile," @%s x509 -subject -dates -fingerprint -noout \\\n",sslbin); - fprintf(makefile," -in key/psybnc.cert.pem\n"); + fprintf(makefile," -in key/openbnc.cert.pem\n"); } if(!fexists("src/ssl.rnd")) { @@ -527,7 +527,7 @@ } } } - fprintf(makefile," @echo " APPNAME APPVER "-%s ready. Please read the README before you run psybnc.\n",os); + fprintf(makefile," @echo " APPNAME APPVER "-%s ready. Please read the README before you run openbnc.\n",os); fprintf(makefile,"\n"); fprintf(makefile,"include ./targets.mak\n"); fclose(makefile); Index: convconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/convconf.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- convconf.c 4 Jun 2004 16:25:48 -0000 1.3 +++ convconf.c 9 Jun 2004 08:53:50 -0000 1.4 @@ -173,11 +173,11 @@ system("mv *.MOTD motd 2>/dev/null"); system("mv *.MOTD.old motd 2>/dev/null"); system("rm -rf *.INI.old 2>/dev/null"); - handle=fopen("psbnc.ini","r"); + handle=fopen("pnbnc.ini","r"); if(handle!=NULL) { fclose(handle); - printf("psyBNC2.1 -> psyBNC2.2 Conversion Utility\nChecking old Ini-Files\n"); + printf("psyBNC2.1 -> OpenBNC 1.0 Conversion Utility\nChecking old Ini-Files\n"); fconfif=fopen("psybnc.conf","a"); if(fconfif==NULL) { |
From: Nuno A. <nun...@us...> - 2004-06-09 08:53:59
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31422/openbnc/src Modified Files: p_version.h Log Message: Index: p_version.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_version.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- p_version.h 4 Jun 2004 16:26:39 -0000 1.3 +++ p_version.h 9 Jun 2004 08:53:50 -0000 1.4 @@ -18,7 +18,7 @@ */ #define APPNAME "openBNC" -#define APPVER "1.1" +#define APPVER "1.0" #ifdef P_MAIN |
From: Nuno A. <nun...@us...> - 2004-06-09 08:53:58
|
Update of /cvsroot/openbnc/openbnc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31422/openbnc Modified Files: Makefile targets.mak Log Message: Index: targets.mak =================================================================== RCS file: /cvsroot/openbnc/openbnc/targets.mak,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- targets.mak 24 May 2004 16:43:57 -0000 1.1.1.1 +++ targets.mak 9 Jun 2004 08:53:50 -0000 1.2 @@ -70,8 +70,8 @@ $(SRC)p_coredns.o : $(SRC)p_coredns.c $(SRC)p_global.h config.h $(CC) $(INCLUDE) -c $(CFLAGS) $(DEFINE) $(SRC)p_coredns.c -o $(SRC)p_coredns.o -$(SRC)psybnc.o : $(SRC)psybnc.c $(SRC)p_global.h config.h - $(CC) $(INCLUDE) -c $(CFLAGS) $(DEFINE) $(SRC)psybnc.c -o $(SRC)psybnc.o +$(SRC)openbnc.o : $(SRC)openbnc.c $(SRC)p_global.h config.h + $(CC) $(INCLUDE) -c $(CFLAGS) $(DEFINE) $(SRC)openbnc.c -o $(SRC)openbnc.o $(SRC)match.o : $(SRC)match.c $(CC) $(INCLUDE) -c $(CFLAGS) $(DEFINE) $(SRC)match.c -o $(SRC)match.o Index: Makefile =================================================================== RCS file: /cvsroot/openbnc/openbnc/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Makefile 24 May 2004 16:43:55 -0000 1.1.1.1 +++ Makefile 9 Jun 2004 08:53:50 -0000 1.2 @@ -3,7 +3,7 @@ all: $(OBJS) @echo Initializing bouncer compilation - @echo [*] Running Conversion Tool for older psyBNC Data. + @echo [*] Running Conversion Tool for old PsyBNC Data to OpenBNC. @$(CC) tools/convconf.c -o tools/convconf @tools/convconf @echo [*] Running Autoconfig. @@ -14,12 +14,12 @@ @./makesalt @echo [*] Compiling Bouncer.. @make -f makefile.out - @ls -al psybnc + @ls -al openbnc @echo done. menuconfig: @echo Initializing Menu-Configuration - @echo [*] Running Conversion Tool for older psyBNC Data. + @echo [*] Running Conversion Tool for older OpenBNC Data. @$(CC) tools/convconf.c -o tools/convconf @tools/convconf @echo [*] Running Autoconfig. @@ -30,12 +30,12 @@ @$(CC) menuconf/menuconf.c menuconf/inputbox.c menuconf/util.c menuconf/checklist.c menuconf/menubox.c menuconf/textbox.c src/snprintf.c -I. -lncurses -lm -o menuconf/menuconf 2>/dev/null @menuconf/menuconf @clear - @echo Now compile psyBNC using make, if not yet compiled, or if Options were changed. + @echo Now compile OpenBNC using make, if not yet compiled, or if Options were changed. @echo done. menuconfig-curses: @echo Initializing Menu-Configuration using Curses - @echo [*] Running Conversion Tool for older psyBNC Data. + @echo [*] Running Conversion Tool for older OpenBNC Data. @$(CC) tools/convconf.c -o tools/convconf @tools/convconf @echo [*] Running Autoconfig. @@ -50,8 +50,10 @@ @echo done. dist: - cd ..; tar -cvf psyBNC2.3.1.tar psybnc; gzip -c psyBNC2.3.1.tar > psyBNC2.3.1.tar.gz; rm psyBNC2.3.1.tar + + cd ..; tar -cvf OpenBNC2.3.1.tar openbnc; gzip -c OpenBNC2.3.1.tar > OpenBNC2.3.1.tar.gz; rm OpenBNC2.3.1.tar clean: @echo Cleaning. - rm -rf src/*.o \ No newline at end of file + rm -rf src/*.o + @echo Must Add Options to Clean the rest!!! |
From: Nuno A. <nun...@us...> - 2004-06-08 16:07:17
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31221/openbnc/src Modified Files: p_global.h Log Message: Index: p_global.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_global.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- p_global.h 4 Jun 2004 16:31:44 -0000 1.4 +++ p_global.h 8 Jun 2004 16:07:08 -0000 1.5 @@ -67,7 +67,7 @@ #include <config.h> #endif #ifdef HAVE_PROV_CONFIG -#include "/openbnc/config.h" +#include "../config.h" #endif #ifdef HAVE_SSL #include <openssl/crypto.h> |
From: Nuno A. <nun...@us...> - 2004-06-08 16:07:17
|
Update of /cvsroot/openbnc/openbnc/menuconf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31221/openbnc/menuconf Modified Files: menuconf.c Log Message: Index: menuconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/menuconf.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- menuconf.c 4 Jun 2004 16:39:32 -0000 1.4 +++ menuconf.c 8 Jun 2004 16:07:07 -0000 1.5 @@ -2048,11 +2048,11 @@ bounceroptions(); break; case 103: - log=fopen("log/psybnc.log","r"); + log=fopen("log/openbnc.log","r"); if(log!=NULL) /* only, if exists */ { fclose(log); - rc=dialog_textbox ("The current Log", "log/psybnc.log", 21, 78); + rc=dialog_textbox ("The current Log", "log/openbnc.log", 21, 78); } break; case 104: @@ -2067,7 +2067,7 @@ rc=dialog_textbox ("Last Changes", "CHANGES", 21, 78); break; case 108: - return 0x0; + return 0x0; /* exit to system ... */ } } if(rc==1) |
From: Nuno A. <nun...@us...> - 2004-06-08 16:07:17
|
Update of /cvsroot/openbnc/openbnc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31221/openbnc Modified Files: README Log Message: Index: README =================================================================== RCS file: /cvsroot/openbnc/openbnc/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- README 24 May 2004 16:43:56 -0000 1.1.1.1 +++ README 8 Jun 2004 16:07:07 -0000 1.2 @@ -1,4 +1,4 @@ -psyBNC 2.3.1 +OpenBNC 1.0 ------------ This program is useful for people who cannot be on irc all the time. Its used to |
From: Nuno A. <nun...@us...> - 2004-06-04 16:39:42
|
Update of /cvsroot/openbnc/openbnc/menuconf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23404/openbnc/menuconf Modified Files: menuconf.c Log Message: Index: menuconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/menuconf.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- menuconf.c 4 Jun 2004 16:11:44 -0000 1.3 +++ menuconf.c 4 Jun 2004 16:39:32 -0000 1.4 @@ -360,7 +360,7 @@ #define INIFILE "PSYBNC" -char configfile[]="psybnc.conf"; +char configfile[]="openbnc.conf"; /* Data Definitions */ @@ -2033,7 +2033,7 @@ selection[0]=0; init_dialog(); rc=dialog_menu( APPNAME " " APPVER " - Configuration","Welcome to the " APPNAME " Configuration-Tool. Please select the section of Options you want to change.", - 21,75,12,lchoice,7,mainmenu); + 21,75,12,lchoice,8,mainmenu); extractparam(); end_dialog(); if(rc==0) /* choose */ |
From: Andre R. <and...@us...> - 2004-06-04 16:31:52
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21755 Modified Files: p_global.h Log Message: Adding copyrights. Index: p_global.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_global.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- p_global.h 4 Jun 2004 16:26:38 -0000 1.3 +++ p_global.h 4 Jun 2004 16:31:44 -0000 1.4 @@ -22,7 +22,7 @@ The original copyright preamble follows: ************************************************************************ - * openbnc0.0.1, src/p_global.h + * psybnc2.3.1, src/p_global.h * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de |
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20499/src Modified Files: match.c p_blowfish.c p_client.c p_coredns.c p_crypt.c p_data.h p_dcc.c p_global.h p_hash.c p_idea.c p_inifunc.c p_intnet.c p_link.c p_log.c p_memory.c p_network.c p_parse.c p_peer.c p_script.c p_server.c p_socket.c p_string.c p_sysmsg.c p_topology.c p_translate.c p_uchannel.c p_userfile.c p_version.h snprintf.c ssl.cnf Log Message: Adding copyrights. Index: p_crypt.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_crypt.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_crypt.c 24 May 2004 16:44:08 -0000 1.1.1.1 +++ p_crypt.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_crypt.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,13 +40,14 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* + * * this crypting method expires with psybnc2.1 for one-way passwords. * the password for proxy authorisation is from now on build by * blowfish, but still downwards compatible. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_string.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_string.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_string.c 24 May 2004 16:44:13 -0000 1.1.1.1 +++ p_string.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_string.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_sysmsg.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_sysmsg.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_sysmsg.c 24 May 2004 16:44:16 -0000 1.1.1.1 +++ p_sysmsg.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_sysmsg.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_data.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_data.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_data.h 24 May 2004 16:44:08 -0000 1.1.1.1 +++ p_data.h 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_data.h * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ /* Dummy Stringarray */ Index: p_socket.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_socket.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_socket.c 24 May 2004 16:44:12 -0000 1.1.1.1 +++ p_socket.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_socket.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_userfile.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_userfile.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_userfile.c 24 May 2004 16:44:16 -0000 1.1.1.1 +++ p_userfile.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_userfile.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_intnet.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_intnet.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_intnet.c 24 May 2004 16:44:16 -0000 1.1.1.1 +++ p_intnet.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_intnet.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_script.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_script.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_script.c 24 May 2004 16:44:06 -0000 1.1.1.1 +++ p_script.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_script.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,8 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_idea.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_idea.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_idea.c 24 May 2004 16:44:09 -0000 1.1.1.1 +++ p_idea.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_idea.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -28,7 +51,8 @@ * * More Infos about IDEA and how to buy your license: www.ascom.com * - */ + +*/ #ifndef lint Index: p_version.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_version.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- p_version.h 28 May 2004 15:33:04 -0000 1.2 +++ p_version.h 4 Jun 2004 16:26:39 -0000 1.3 @@ -1,5 +1,24 @@ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #define APPNAME "openBNC" -#define APPVER "0.0.1" +#define APPVER "1.1" #ifdef P_MAIN Index: p_client.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_client.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_client.c 24 May 2004 16:44:08 -0000 1.1.1.1 +++ p_client.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_client.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_parse.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_parse.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_parse.c 24 May 2004 16:44:11 -0000 1.1.1.1 +++ p_parse.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_parse.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_link.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_link.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_link.c 24 May 2004 16:44:10 -0000 1.1.1.1 +++ p_link.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_link.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_memory.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_memory.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_memory.c 24 May 2004 16:44:10 -0000 1.1.1.1 +++ p_memory.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_memory.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_topology.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_topology.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_topology.c 24 May 2004 16:44:16 -0000 1.1.1.1 +++ p_topology.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_topology.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_global.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_global.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- p_global.h 4 Jun 2004 15:26:13 -0000 1.2 +++ p_global.h 4 Jun 2004 16:26:38 -0000 1.3 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * openbnc0.0.1, src/p_global.h * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #include <stdio.h> #include <sys/types.h> Index: p_inifunc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_inifunc.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_inifunc.c 24 May 2004 16:44:09 -0000 1.1.1.1 +++ p_inifunc.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_inifunc.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_hash.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_hash.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_hash.c 24 May 2004 16:44:09 -0000 1.1.1.1 +++ p_hash.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_hash.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_server.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_server.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_server.c 24 May 2004 16:44:12 -0000 1.1.1.1 +++ p_server.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_server.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: snprintf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/snprintf.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- snprintf.c 24 May 2004 16:44:16 -0000 1.1.1.1 +++ snprintf.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,12 +1,35 @@ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * changed slightly for the use in psyBNC 2.2.1 by psychoid * changed a little bit more for 2.2.2. We always use this * in psybnc now, but without any support of %n or %p. Hope * you love the fact no format bugs can be exploited, even if you * are able to bypass the formatstring-filter which is * built into psybnc since version 1.1 :) - */ -/* ==================================================================== + * + * ==================================================================== * Copyright (c) 1995-1999 The Apache Group. All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -64,7 +87,8 @@ * This code is based on, and used with the permission of, the * SIO stdio-replacement strx_* functions by Panos Tsirigotis * <pa...@al...> for xinetd. - */ + +*/ #include <stdio.h> #include <sys/types.h> Index: p_peer.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_peer.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_peer.c 24 May 2004 16:44:11 -0000 1.1.1.1 +++ p_peer.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_peer.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_network.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_network.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_network.c 24 May 2004 16:44:11 -0000 1.1.1.1 +++ p_network.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_network.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_uchannel.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_uchannel.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_uchannel.c 24 May 2004 16:44:16 -0000 1.1.1.1 +++ p_uchannel.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_uchannel.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: ssl.cnf =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/ssl.cnf,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- ssl.cnf 24 May 2004 16:44:16 -0000 1.1.1.1 +++ ssl.cnf 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,3 +1,20 @@ +# OpenBNC Advanced IRC Bouncer +# Copyright (C) 2004 The OpenBNC Development Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # create RSA certs - Server RANDFILE = src/ssl.rnd @@ -10,7 +27,7 @@ [ req_dn ] countryName = Country Name -countryName_default = DE +countryName_default = PT countryName_min = 2 countryName_max = 2 @@ -20,10 +37,10 @@ localityName = Locality Name (eg, city) 0.organizationName = Organization Name (eg, company) -0.organizationName_default = tCl +0.organizationName_default = openBNC Development Team organizationalUnitName = Organizational Unit Name (eg, section) -organizationalUnitName_default = psyBNC +organizationalUnitName_default = openBNC 0.commonName = Common Name (Full domain of your server) 1.commonName_value = localhost Index: p_log.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_log.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_log.c 24 May 2004 16:44:10 -0000 1.1.1.1 +++ p_log.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_log.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_coredns.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_coredns.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_coredns.c 24 May 2004 16:44:16 -0000 1.1.1.1 +++ p_coredns.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,7 +1,30 @@ -/* coredns - Borrowed from eggdrop1.6.6 - * rewritten and optimized for psybnc and ipv6-resolves by psychoid - */ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * coredns - Borrowed from eggdrop1.6.6 + * rewritten and optimized for psybnc and ipv6-resolves by psychoid + * + * * dnscore.c -- part of dns.mod * This file contains all core functions needed for the eggdrop dns module. * Many of them are only minimaly modified from the original source. @@ -9,8 +32,8 @@ * Modified/written by Fabian Knittel <fkn...@gm...> * * $Id$ - */ -/* + * + * * Portions Copyright (C) 1999, 2000, 2001 Eggheads Development Team * * This program is free software; you can redistribute it and/or @@ -26,9 +49,9 @@ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ + * -/* + * * Borrowed from mtr -- a network diagnostic tool * Copyright (C) 1997,1998 Matt Kimball <mki...@xm...> * Released under the GPL, as above. @@ -36,7 +59,8 @@ * Non-blocking DNS portion -- * Copyright (C) 1998 Simon Kirby <si...@ne...> * Released under the GPL, as above. - */ + +*/ #include "config.h" #define P_COREDNS Index: p_translate.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_translate.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_translate.c 24 May 2004 16:44:16 -0000 1.1.1.1 +++ p_translate.c 4 Jun 2004 16:26:39 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_translate.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: match.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/match.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- match.c 24 May 2004 16:44:06 -0000 1.1.1.1 +++ match.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,7 +1,30 @@ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * This code was useful also for psybnc.c, so why should we change it - */ -/* =================================================================== + * + * =================================================================== * match.c -- wildcard matching functions * (rename to reg.c for ircII) * @@ -21,7 +44,9 @@ * * I hereby release this code into the public domain * - * =================================================================== */ + * =================================================================== + +*/ #ifdef HAVE_CONFIG_H #include <config.h> Index: p_blowfish.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_blowfish.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_blowfish.c 24 May 2004 16:44:07 -0000 1.1.1.1 +++ p_blowfish.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_blowfish.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -20,7 +43,8 @@ * * blowfish was designed by Bruce Schneier, see his book "Applied Cryptography" * - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: p_dcc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/p_dcc.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- p_dcc.c 24 May 2004 16:44:08 -0000 1.1.1.1 +++ p_dcc.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, src/p_dcc.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; |
From: Andre R. <and...@us...> - 2004-06-04 16:26:48
|
Update of /cvsroot/openbnc/openbnc/menuconf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20499/menuconf Modified Files: checklist.c colors.h dialog.h inifunc.c inputbox.c menubox.c textbox.c util.c Log Message: Adding copyrights. Index: inputbox.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/inputbox.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- inputbox.c 24 May 2004 16:44:03 -0000 1.1.1.1 +++ inputbox.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * inputbox.c -- implements the input box * * ORIGINAL AUTHOR: Savio Lam (la...@cs...) @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #include "dialog.h" Index: menubox.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/menubox.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- menubox.c 24 May 2004 16:44:03 -0000 1.1.1.1 +++ menubox.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * menubox.c -- implements the menu box * * ORIGINAL AUTHOR: Savio Lam (la...@cs...) @@ -17,9 +40,9 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* + * * Changes by Clifford Wolf (go...@cl...) * * [ 1998-06-13 ] @@ -54,7 +77,8 @@ * This fixes a bug in Menuconfig where using ' ' to descend into menus * would leave mis-synchronized lxdialog.scrltmp files lying around, * fscanf would read in 'scroll', and eventually that value would get used. - */ + +*/ #include "dialog.h" Index: checklist.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/checklist.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- checklist.c 24 May 2004 16:44:03 -0000 1.1.1.1 +++ checklist.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * checklist.c -- implements the checklist box * * ORIGINAL AUTHOR: Savio Lam (la...@cs...) @@ -19,7 +42,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #include "dialog.h" Index: util.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/util.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- util.c 24 May 2004 16:44:04 -0000 1.1.1.1 +++ util.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * util.c * * ORIGINAL AUTHOR: Savio Lam (la...@cs...) @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #include "dialog.h" Index: inifunc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/inifunc.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- inifunc.c 24 May 2004 16:44:05 -0000 1.1.1.1 +++ inifunc.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.2, menuconf/inifunc.c * Copyright (C) 2000 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: colors.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/colors.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- colors.h 24 May 2004 16:44:04 -0000 1.1.1.1 +++ colors.h 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * colors.h -- color attribute definitions * * AUTHOR: Savio Lam (la...@cs...) @@ -16,7 +39,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ /* Index: textbox.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/textbox.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- textbox.c 24 May 2004 16:44:05 -0000 1.1.1.1 +++ textbox.c 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,4 +1,27 @@ /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * textbox.c -- implements the text box * * ORIGINAL AUTHOR: Savio Lam (la...@cs...) @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #include "dialog.h" Index: dialog.h =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/dialog.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- dialog.h 24 May 2004 16:44:03 -0000 1.1.1.1 +++ dialog.h 4 Jun 2004 16:26:38 -0000 1.2 @@ -1,5 +1,27 @@ - /* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + * * dialog.h -- common declarations for all dialog modules * * AUTHOR: Savio Lam (la...@cs...) @@ -17,7 +39,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #include <sys/types.h> #include <fcntl.h> |
Update of /cvsroot/openbnc/openbnc/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20297 Modified Files: autoconf.c chkbind.c chkenv.c chkipv6.c chkresolv.c chksock.c chkssl.c chktime.c convconf.c makesalt.c Log Message: Adding copyrights. Index: chksock.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chksock.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- chksock.c 4 Jun 2004 15:26:13 -0000 1.2 +++ chksock.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/chksock.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.2.2, tools/chksock.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,9 +40,11 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* this program gets compiled, if no lsock and lnsl is needed */ + * this program gets compiled, if no lsock and lnsl is needed + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: makesalt.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/makesalt.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- makesalt.c 4 Jun 2004 15:26:13 -0000 1.2 +++ makesalt.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/makesalt.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.2.2, tools/makesalt.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; @@ -100,7 +124,7 @@ fprintf(salt,"\n"); fclose(salt); printf("Salt File created. Move the Salt File to a safe location after\n"); - printf("OpenBNC was compiled and delete it on your shell. You will need\n"); + printf("psyBNC was compiled and delete it on your shell. You will need\n"); printf("the File later for update Compiling.\n"); exit (0x0); } Index: chkenv.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkenv.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- chkenv.c 4 Jun 2004 15:26:13 -0000 1.2 +++ chkenv.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/chkenv.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.2.2, tools/chkenv.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,9 +40,11 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* this program gets compiled, if setenv is supported. */ + * this program gets compiled, if setenv is supported. + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: autoconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/autoconf.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- autoconf.c 4 Jun 2004 15:26:13 -0000 1.2 +++ autoconf.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.1, tools/autoconf.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.3, tools/autoconf.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; @@ -410,7 +434,7 @@ } else printf("No openssl found. Get openssl at www.openssl.org\n"); - config=fopen("/openbnc/config.h","r"); + config=fopen("/psybnc/config.h","r"); if(config!=NULL) { fclose(config); @@ -440,19 +464,19 @@ #endif else fprintf(makefile,"INCLUDE = -I./src/ -I.\n"); - fprintf(makefile,"OBJS = src/openbnc.o src/match.o src/p_client.o src/p_crypt.o src/p_dcc.o src/p_hash.o src/p_idea.o src/p_inifunc.o src/p_link.o src/p_log.o src/p_memory.o src/p_network.o src/p_parse.o src/p_peer.o src/p_server.o src/p_socket.o src/p_string.o src/p_sysmsg.o src/p_userfile.o src/p_uchannel.o src/p_script.o src/p_topology.o src/p_intnet.o src/p_blowfish.o src/p_translate.o src/p_coredns.o src/snprintf.o %s\n",env); + fprintf(makefile,"OBJS = src/psybnc.o src/match.o src/p_client.o src/p_crypt.o src/p_dcc.o src/p_hash.o src/p_idea.o src/p_inifunc.o src/p_link.o src/p_log.o src/p_memory.o src/p_network.o src/p_parse.o src/p_peer.o src/p_server.o src/p_socket.o src/p_string.o src/p_sysmsg.o src/p_userfile.o src/p_uchannel.o src/p_script.o src/p_topology.o src/p_intnet.o src/p_blowfish.o src/p_translate.o src/p_coredns.o src/snprintf.o %s\n",env); if(provi==0) fprintf(makefile,"DEFINE = -DHAVE_CONFIG %s%s%s%s%s%s\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt); else fprintf(makefile,"DEFINE = -DHAVE_PROV_CONFIG %s%s%s%s%s%s\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt); - fprintf(makefile,"TARGET = openbnc\n"); + fprintf(makefile,"TARGET = psybnc\n"); fprintf(makefile,"\n"); fprintf(makefile,"all: $(OBJS)\n"); fprintf(makefile," $(CC) -o $(TARGET) $(CFLAGS) $(OBJS) $(LIBS)\n"); fprintf(makefile," @strip $(TARGET)\n"); if(ssl==0) { - if(!fexists("key/openbnc.cert.pem")) /* only create, if not exist */ + if(!fexists("key/psybnc.cert.pem")) /* only create, if not exist */ { mkdir("key",0700); fprintf(makefile," @echo \"*** GENERATING SSL-KEYS FROM CERTIFICATE **\"\n"); @@ -462,14 +486,14 @@ fprintf(makefile," @echo \"* for the sake of correct Cert-Checking *\"\n"); fprintf(makefile," @echo \"*******************************************\"\n"); fprintf(makefile," @echo \"Generating certificate request .. \"\n"); - fprintf(makefile," @%s req -new -config src/ssl.cnf -out key/openbnc.req.pem \\\n",sslbin); - fprintf(makefile," -keyout key/openbnc.key.pem -nodes\n"); + fprintf(makefile," @%s req -new -config src/ssl.cnf -out key/psybnc.req.pem \\\n",sslbin); + fprintf(makefile," -keyout key/psybnc.key.pem -nodes\n"); fprintf(makefile," @echo \"Generating self-signed certificate .. \"\n"); - fprintf(makefile," @%s req -x509 -days 365 -in key/openbnc.req.pem \\\n",sslbin); - fprintf(makefile," -key key/openbnc.key.pem -out key/openbnc.cert.pem\n"); + fprintf(makefile," @%s req -x509 -days 365 -in key/psybnc.req.pem \\\n",sslbin); + fprintf(makefile," -key key/psybnc.key.pem -out key/psybnc.cert.pem\n"); fprintf(makefile," @echo \"Generating fingerprint ..\"\n"); fprintf(makefile," @%s x509 -subject -dates -fingerprint -noout \\\n",sslbin); - fprintf(makefile," -in key/openbc.cert.pem\n"); + fprintf(makefile," -in key/psybnc.cert.pem\n"); } if(!fexists("src/ssl.rnd")) { @@ -503,7 +527,7 @@ } } } - fprintf(makefile," @echo " APPNAME APPVER "-%s ready. Please read the README before you run openbnc.\n",os); + fprintf(makefile," @echo " APPNAME APPVER "-%s ready. Please read the README before you run psybnc.\n",os); fprintf(makefile,"\n"); fprintf(makefile,"include ./targets.mak\n"); fclose(makefile); Index: chktime.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chktime.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- chktime.c 4 Jun 2004 15:26:13 -0000 1.2 +++ chktime.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/chktime.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.2.2, tools/chktime.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,9 +40,11 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* this program gets compiled, if time.h is not needed */ + * this program gets compiled, if time.h is not needed + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: chkipv6.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkipv6.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- chkipv6.c 4 Jun 2004 15:26:13 -0000 1.2 +++ chkipv6.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/chkipv6.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.2.2, tools/chkipv6.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,9 +40,11 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* this program gets compiled, if IPv6 is supported. */ + * this program gets compiled, if IPv6 is supported. + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: chkssl.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkssl.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- chkssl.c 4 Jun 2004 15:26:13 -0000 1.2 +++ chkssl.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/chkssl.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.3, tools/chkssl.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,9 +40,11 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* this program gets compiled, if ssl is supported. */ + * this program gets compiled, if ssl is supported. + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: convconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/convconf.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- convconf.c 4 Jun 2004 15:26:13 -0000 1.2 +++ convconf.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/convconf.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.2.2, tools/convconf.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,7 +40,8 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; @@ -153,14 +177,14 @@ if(handle!=NULL) { fclose(handle); - printf("OpenBNC0.0.1 -> OpenBNC Conversion Utility\nChecking old Ini-Files\n"); - fconfif=fopen("openbnc.conf","a"); + printf("psyBNC2.1 -> psyBNC2.2 Conversion Utility\nChecking old Ini-Files\n"); + fconfif=fopen("psybnc.conf","a"); if(fconfif==NULL) { - printf("Can't open openbnc.conf, aborting\n"); + printf("Can't open psybnc.conf, aborting\n"); exit(0x1); /* error, break making. */ } - handle=fopen("pnbnc.ini","r"); + handle=fopen("psbnc.ini","r"); cofile(handle,fconfif,"PSYBNC",1); fclose(handle); unlink("psbnc.ini"); @@ -187,13 +211,13 @@ convertlist("HOSTALLOWS","ENTRY%d","PSYBNC","psbnc.hosts",fconfif); fclose(fconfif); } else { - fconfif=fopen("openbnc.conf","r"); + fconfif=fopen("psybnc.conf","r"); if(fconfif!=NULL) { printf("Using existent configuration File.\n"); fclose(fconfif); } else { - fconfif=fopen("openbnc.conf","w"); + fconfif=fopen("psybnc.conf","w"); fprintf(fconfif,"PSYBNC.SYSTEM.PORT1=31337\n"); fprintf(fconfif,"PSYBNC.SYSTEM.HOST1=*\n"); fprintf(fconfif,"PSYBNC.HOSTALLOWS.ENTRY0=*;*\n"); Index: chkresolv.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkresolv.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- chkresolv.c 4 Jun 2004 15:26:13 -0000 1.2 +++ chkresolv.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/chkresolv.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.3.1, tools/chkresolv.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,9 +40,11 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* this program gets compiled, if resolv (dn_expand etc.) may be done async */ + * this program gets compiled, if resolv (dn_expand etc.) may be done async + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; Index: chkbind.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkbind.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- chkbind.c 4 Jun 2004 15:26:13 -0000 1.2 +++ chkbind.c 4 Jun 2004 16:25:48 -0000 1.3 @@ -1,5 +1,28 @@ -/************************************************************************ - * openbnc0.0.1, tools/chksock.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.2.2, tools/chksock.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -17,9 +40,11 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* this program gets compiled, if no lsock and lnsl is needed */ + * this program gets compiled, if no lsock and lnsl is needed + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; |
From: Nuno A. <nun...@us...> - 2004-06-04 16:12:05
|
Update of /cvsroot/openbnc/openbnc/menuconf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16451/openbnc/menuconf Modified Files: menuconf.c Log Message: Index: menuconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/menuconf.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- menuconf.c 4 Jun 2004 15:46:22 -0000 1.2 +++ menuconf.c 4 Jun 2004 16:11:44 -0000 1.3 @@ -170,7 +170,9 @@ "106:", "FAQ for Version " APPVER, "107:", - "Changes for Version " APPVER + "Changes for Version " APPVER, + "108:", + "Exit..." }; /* @@ -2064,6 +2066,8 @@ case 107: rc=dialog_textbox ("Last Changes", "CHANGES", 21, 78); break; + case 108: + return 0x0; } } if(rc==1) |
From: Andre R. <and...@us...> - 2004-06-04 15:46:47
|
Update of /cvsroot/openbnc/openbnc/menuconf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11439 Modified Files: menuconf.c Log Message: Adding copyrights. Index: menuconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/menuconf/menuconf.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- menuconf.c 24 May 2004 16:44:04 -0000 1.1.1.1 +++ menuconf.c 4 Jun 2004 15:46:22 -0000 1.2 @@ -1,4 +1,27 @@ -/************************************************************************ +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ * psybnc2.3.1, menuconf/menuconf.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet @@ -17,13 +40,14 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ + * -/* Note: The GUI-Routines are made by Savio Lam (la...@cs...) + * Note: The GUI-Routines are made by Savio Lam (la...@cs...) * Some changes were made to those routines to give back the * choosen parameter into an internal variable and to allow * Delete and New for User and Linklist - */ + +*/ #ifndef lint static char rcsid[] = "@(#)$Id$"; |
From: Andre R. <and...@us...> - 2004-06-04 15:31:12
|
Update of /cvsroot/openbnc/openbnc/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7779 Modified Files: openbnc.c Log Message: Adding copyrights. Index: openbnc.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/src/openbnc.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- openbnc.c 4 Jun 2004 15:03:43 -0000 1.2 +++ openbnc.c 4 Jun 2004 15:31:01 -0000 1.3 @@ -1,10 +1,42 @@ -/************************************************************************ - * openbnc0.0.1, src/openbnc.c +/* +OpenBNC Advanced IRC Bouncer +Copyright (C) 2004 The OpenBNC Development Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The original version of this program was developed by 'the most psychoid +and the cool lam3rz IRC Group'. + +The original copyright preamble follows: + + ************************************************************************ + * psybnc2.3.1, src/psybnc.c * Copyright (C) 2002 the most psychoid and * the cool lam3rz IRC Group, IRCnet - * http://www.openbnc.sf.net + * http://www.psychoid.lam3rz.de * - * + * .-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-. + * ,----.,----.,-. ,-.,---.,--. ,-.,----. + * | O || ,-' \ \/ / | o || \| || ,--' + * | _/ _\ \ \ / | o< | |\ || |__ + * |_| |____/ |__| |___||_| \_| \___| + * Version 2.3.1 (c) 1999-2002 + * the most psychoid + * and the cool lam3rz Group IRCnet + * + * `-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=tCl=-' * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,13 +51,10 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ - - /* * - * The code will b changed but not the banner.....i will leave that to Andre... - * - */ + +*/ + #ifndef lint static char rcsid[] = "@(#)$Id$"; #endif |
From: Nuno A. <nun...@us...> - 2004-06-04 15:26:23
|
Update of /cvsroot/openbnc/openbnc/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6589/openbnc/tools Modified Files: autoconf.c chkbind.c chkenv.c chkipv6.c chkresolv.c chksock.c chkssl.c chktime.c convconf.c makesalt.c Log Message: Log Index: chksock.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chksock.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- chksock.c 24 May 2004 16:44:18 -0000 1.1.1.1 +++ chksock.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.2.2, tools/chksock.c + * openbnc0.0.1, tools/chksock.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de Index: makesalt.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/makesalt.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- makesalt.c 24 May 2004 16:44:17 -0000 1.1.1.1 +++ makesalt.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.2.2, tools/makesalt.c + * openbnc0.0.1, tools/makesalt.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -100,7 +100,7 @@ fprintf(salt,"\n"); fclose(salt); printf("Salt File created. Move the Salt File to a safe location after\n"); - printf("psyBNC was compiled and delete it on your shell. You will need\n"); + printf("OpenBNC was compiled and delete it on your shell. You will need\n"); printf("the File later for update Compiling.\n"); exit (0x0); } Index: chkenv.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkenv.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- chkenv.c 24 May 2004 16:44:18 -0000 1.1.1.1 +++ chkenv.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.2.2, tools/chkenv.c + * openbnc0.0.1, tools/chkenv.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de Index: autoconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/autoconf.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- autoconf.c 24 May 2004 16:44:18 -0000 1.1.1.1 +++ autoconf.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.3, tools/autoconf.c + * openbnc0.1, tools/autoconf.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -410,7 +410,7 @@ } else printf("No openssl found. Get openssl at www.openssl.org\n"); - config=fopen("/psybnc/config.h","r"); + config=fopen("/openbnc/config.h","r"); if(config!=NULL) { fclose(config); @@ -440,19 +440,19 @@ #endif else fprintf(makefile,"INCLUDE = -I./src/ -I.\n"); - fprintf(makefile,"OBJS = src/psybnc.o src/match.o src/p_client.o src/p_crypt.o src/p_dcc.o src/p_hash.o src/p_idea.o src/p_inifunc.o src/p_link.o src/p_log.o src/p_memory.o src/p_network.o src/p_parse.o src/p_peer.o src/p_server.o src/p_socket.o src/p_string.o src/p_sysmsg.o src/p_userfile.o src/p_uchannel.o src/p_script.o src/p_topology.o src/p_intnet.o src/p_blowfish.o src/p_translate.o src/p_coredns.o src/snprintf.o %s\n",env); + fprintf(makefile,"OBJS = src/openbnc.o src/match.o src/p_client.o src/p_crypt.o src/p_dcc.o src/p_hash.o src/p_idea.o src/p_inifunc.o src/p_link.o src/p_log.o src/p_memory.o src/p_network.o src/p_parse.o src/p_peer.o src/p_server.o src/p_socket.o src/p_string.o src/p_sysmsg.o src/p_userfile.o src/p_uchannel.o src/p_script.o src/p_topology.o src/p_intnet.o src/p_blowfish.o src/p_translate.o src/p_coredns.o src/snprintf.o %s\n",env); if(provi==0) fprintf(makefile,"DEFINE = -DHAVE_CONFIG %s%s%s%s%s%s\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt); else fprintf(makefile,"DEFINE = -DHAVE_PROV_CONFIG %s%s%s%s%s%s\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt); - fprintf(makefile,"TARGET = psybnc\n"); + fprintf(makefile,"TARGET = openbnc\n"); fprintf(makefile,"\n"); fprintf(makefile,"all: $(OBJS)\n"); fprintf(makefile," $(CC) -o $(TARGET) $(CFLAGS) $(OBJS) $(LIBS)\n"); fprintf(makefile," @strip $(TARGET)\n"); if(ssl==0) { - if(!fexists("key/psybnc.cert.pem")) /* only create, if not exist */ + if(!fexists("key/openbnc.cert.pem")) /* only create, if not exist */ { mkdir("key",0700); fprintf(makefile," @echo \"*** GENERATING SSL-KEYS FROM CERTIFICATE **\"\n"); @@ -462,14 +462,14 @@ fprintf(makefile," @echo \"* for the sake of correct Cert-Checking *\"\n"); fprintf(makefile," @echo \"*******************************************\"\n"); fprintf(makefile," @echo \"Generating certificate request .. \"\n"); - fprintf(makefile," @%s req -new -config src/ssl.cnf -out key/psybnc.req.pem \\\n",sslbin); - fprintf(makefile," -keyout key/psybnc.key.pem -nodes\n"); + fprintf(makefile," @%s req -new -config src/ssl.cnf -out key/openbnc.req.pem \\\n",sslbin); + fprintf(makefile," -keyout key/openbnc.key.pem -nodes\n"); fprintf(makefile," @echo \"Generating self-signed certificate .. \"\n"); - fprintf(makefile," @%s req -x509 -days 365 -in key/psybnc.req.pem \\\n",sslbin); - fprintf(makefile," -key key/psybnc.key.pem -out key/psybnc.cert.pem\n"); + fprintf(makefile," @%s req -x509 -days 365 -in key/openbnc.req.pem \\\n",sslbin); + fprintf(makefile," -key key/openbnc.key.pem -out key/openbnc.cert.pem\n"); fprintf(makefile," @echo \"Generating fingerprint ..\"\n"); fprintf(makefile," @%s x509 -subject -dates -fingerprint -noout \\\n",sslbin); - fprintf(makefile," -in key/psybnc.cert.pem\n"); + fprintf(makefile," -in key/openbc.cert.pem\n"); } if(!fexists("src/ssl.rnd")) { @@ -503,7 +503,7 @@ } } } - fprintf(makefile," @echo " APPNAME APPVER "-%s ready. Please read the README before you run psybnc.\n",os); + fprintf(makefile," @echo " APPNAME APPVER "-%s ready. Please read the README before you run openbnc.\n",os); fprintf(makefile,"\n"); fprintf(makefile,"include ./targets.mak\n"); fclose(makefile); Index: chktime.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chktime.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- chktime.c 24 May 2004 16:44:18 -0000 1.1.1.1 +++ chktime.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.2.2, tools/chktime.c + * openbnc0.0.1, tools/chktime.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de Index: chkipv6.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkipv6.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- chkipv6.c 24 May 2004 16:44:18 -0000 1.1.1.1 +++ chkipv6.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.2.2, tools/chkipv6.c + * openbnc0.0.1, tools/chkipv6.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de Index: chkssl.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkssl.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- chkssl.c 24 May 2004 16:44:18 -0000 1.1.1.1 +++ chkssl.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.3, tools/chkssl.c + * openbnc0.0.1, tools/chkssl.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de Index: convconf.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/convconf.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- convconf.c 24 May 2004 16:44:17 -0000 1.1.1.1 +++ convconf.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.2.2, tools/convconf.c + * openbnc0.0.1, tools/convconf.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de @@ -153,14 +153,14 @@ if(handle!=NULL) { fclose(handle); - printf("psyBNC2.1 -> psyBNC2.2 Conversion Utility\nChecking old Ini-Files\n"); - fconfif=fopen("psybnc.conf","a"); + printf("OpenBNC0.0.1 -> OpenBNC Conversion Utility\nChecking old Ini-Files\n"); + fconfif=fopen("openbnc.conf","a"); if(fconfif==NULL) { - printf("Can't open psybnc.conf, aborting\n"); + printf("Can't open openbnc.conf, aborting\n"); exit(0x1); /* error, break making. */ } - handle=fopen("psbnc.ini","r"); + handle=fopen("pnbnc.ini","r"); cofile(handle,fconfif,"PSYBNC",1); fclose(handle); unlink("psbnc.ini"); @@ -187,13 +187,13 @@ convertlist("HOSTALLOWS","ENTRY%d","PSYBNC","psbnc.hosts",fconfif); fclose(fconfif); } else { - fconfif=fopen("psybnc.conf","r"); + fconfif=fopen("openbnc.conf","r"); if(fconfif!=NULL) { printf("Using existent configuration File.\n"); fclose(fconfif); } else { - fconfif=fopen("psybnc.conf","w"); + fconfif=fopen("openbnc.conf","w"); fprintf(fconfif,"PSYBNC.SYSTEM.PORT1=31337\n"); fprintf(fconfif,"PSYBNC.SYSTEM.HOST1=*\n"); fprintf(fconfif,"PSYBNC.HOSTALLOWS.ENTRY0=*;*\n"); Index: chkresolv.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkresolv.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- chkresolv.c 24 May 2004 16:44:18 -0000 1.1.1.1 +++ chkresolv.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.3.1, tools/chkresolv.c + * openbnc0.0.1, tools/chkresolv.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de Index: chkbind.c =================================================================== RCS file: /cvsroot/openbnc/openbnc/tools/chkbind.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- chkbind.c 24 May 2004 16:44:18 -0000 1.1.1.1 +++ chkbind.c 4 Jun 2004 15:26:13 -0000 1.2 @@ -1,5 +1,5 @@ /************************************************************************ - * psybnc2.2.2, tools/chksock.c + * openbnc0.0.1, tools/chksock.c * Copyright (C) 2001 the most psychoid and * the cool lam3rz IRC Group, IRCnet * http://www.psychoid.lam3rz.de |