You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(16) |
Aug
(7) |
Sep
(4) |
Oct
(94) |
Nov
(11) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(128) |
Jun
(22) |
Jul
(46) |
Aug
|
Sep
(15) |
Oct
|
Nov
|
Dec
(32) |
2006 |
Jan
(11) |
Feb
(2) |
Mar
(74) |
Apr
(3) |
May
|
Jun
(11) |
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(23) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: T.S. L. <try...@us...> - 2006-01-07 22:13:38
|
Update of /cvsroot/solidircd/solidircd-stable/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27806/src Modified Files: channel.c dh.c m_server.c packet.c probability.c res.c s_auth.c s_bsd.c s_conf.c s_serv.c send.c zlink.c Log Message: gcc4 warnings fixed Index: dh.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/dh.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** dh.c 5 Jul 2005 21:53:41 -0000 1.4 --- dh.c 7 Jan 2006 22:13:26 -0000 1.5 *************** *** 260,264 **** si->session_shared_length = DH_size(si->dh); si->session_shared = (char *) malloc(DH_size(si->dh)); ! len = DH_compute_key(si->session_shared, tmp, si->dh); BN_free(tmp); --- 260,264 ---- si->session_shared_length = DH_size(si->dh); si->session_shared = (char *) malloc(DH_size(si->dh)); ! len = DH_compute_key((unsigned char *) si->session_shared, tmp, si->dh); BN_free(tmp); Index: channel.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/channel.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** channel.c 4 Sep 2005 18:57:33 -0000 1.10 --- channel.c 7 Jan 2006 22:13:26 -0000 1.11 *************** *** 108,112 **** return 0; ! for (c = msg; *c; c++) { /* not a control code */ --- 108,112 ---- return 0; ! for (c = (unsigned char *) msg; *c; c++) { /* not a control code */ Index: s_conf.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_conf.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** s_conf.c 26 Dec 2005 05:21:38 -0000 1.11 --- s_conf.c 7 Jan 2006 22:13:26 -0000 1.12 *************** *** 1310,1314 **** } /* validate server name, based on m_server() */ ! for (s = tmp->value; *s; s++) { if (*s < ' ' || *s > '~') --- 1310,1314 ---- } /* validate server name, based on m_server() */ ! for (s = (unsigned char *) tmp->value; *s; s++) { if (*s < ' ' || *s > '~') Index: m_server.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/m_server.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** m_server.c 26 Dec 2005 05:21:38 -0000 1.6 --- m_server.c 7 Jan 2006 22:13:26 -0000 1.7 *************** *** 850,854 **** return exit_client(sptr, sptr, sptr, "Could not setup encrypted session"); ! sptr->serv->rc4_in = rc4_initstate(keybuf, keylen); keylen = 1024; --- 850,854 ---- return exit_client(sptr, sptr, sptr, "Could not setup encrypted session"); ! sptr->serv->rc4_in = rc4_initstate((unsigned char *) keybuf, keylen); keylen = 1024; *************** *** 856,860 **** return exit_client(sptr, sptr, sptr, "Could not setup encrypted session"); ! sptr->serv->rc4_out = rc4_initstate(keybuf, keylen); dh_end_session(sptr->serv->sessioninfo_in); --- 856,860 ---- return exit_client(sptr, sptr, sptr, "Could not setup encrypted session"); ! sptr->serv->rc4_out = rc4_initstate((unsigned char *) keybuf, keylen); dh_end_session(sptr->serv->sessioninfo_in); Index: s_serv.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_serv.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** s_serv.c 26 Dec 2005 05:21:38 -0000 1.14 --- s_serv.c 7 Jan 2006 22:13:26 -0000 1.15 *************** *** 71,76 **** --- 71,78 ---- /* Local function prototypes */ + #if 0 static int isnumber(char *); /* return 0 if not, else return number */ static char *cluster(char *); + #endif int send_motd(aClient *, aClient *, int, char **); *************** *** 1913,1916 **** --- 1915,1919 ---- */ + #if 0 static char *cluster(char *hostname) { *************** *** 2012,2016 **** } - #if 0 int m_kline(aClient *cptr, aClient *sptr, int parc, char *parv[]) { --- 2015,2018 ---- *************** *** 2356,2360 **** * (if someone types in maxint, oh well..) - lucas */ ! static int isnumber(char *p) { --- 2358,2362 ---- * (if someone types in maxint, oh well..) - lucas */ ! #if 0 static int isnumber(char *p) { *************** *** 2391,2394 **** --- 2393,2397 ---- return (result); } + #endif #if 0 Index: send.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/send.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** send.c 30 Dec 2005 21:29:28 -0000 1.5 --- send.c 7 Jan 2006 22:13:26 -0000 1.6 *************** *** 230,234 **** { /* don't destroy the data in 'msg' */ ! rc4_process_stream_to_buf(to->serv->rc4_out, msg, rc4buf, len); msg = rc4buf; } --- 230,234 ---- { /* don't destroy the data in 'msg' */ ! rc4_process_stream_to_buf(to->serv->rc4_out, (const unsigned char *) msg, (unsigned char *) rc4buf, len); msg = rc4buf; } *************** *** 334,338 **** #ifdef HAVE_ENCRYPTION_ON if(IsRC4OUT(to)) ! rc4_process_stream(to->serv->rc4_out, msg, len); #endif /* silently stick this on the sendq... */ --- 334,338 ---- #ifdef HAVE_ENCRYPTION_ON if(IsRC4OUT(to)) ! rc4_process_stream(to->serv->rc4_out, (unsigned char *) msg, len); #endif /* silently stick this on the sendq... */ *************** *** 386,390 **** #ifdef HAVE_ENCRYPTION_ON if(IsRC4OUT(to)) ! rc4_process_stream(to->serv->rc4_out, msg, len); #endif /* silently stick this on the sendq... */ --- 386,390 ---- #ifdef HAVE_ENCRYPTION_ON if(IsRC4OUT(to)) ! rc4_process_stream(to->serv->rc4_out, (unsigned char *) msg, len); #endif /* silently stick this on the sendq... */ Index: res.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/res.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** res.c 5 Jul 2005 02:40:02 -0000 1.2 --- res.c 7 Jan 2006 22:13:26 -0000 1.3 *************** *** 1100,1104 **** aCache *cp = (aCache *) NULL; struct sockaddr_in sin; ! int rc, a, len = sizeof(sin), max; rc = recvfrom(resfd, buf, sizeof(buf), 0, (struct sockaddr *) &sin, &len); --- 1100,1105 ---- aCache *cp = (aCache *) NULL; struct sockaddr_in sin; ! int rc, a, max; ! socklen_t len = sizeof(sin); rc = recvfrom(resfd, buf, sizeof(buf), 0, (struct sockaddr *) &sin, &len); Index: probability.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/probability.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** probability.c 5 Jul 2005 03:17:53 -0000 1.3 --- probability.c 7 Jan 2006 22:13:26 -0000 1.4 *************** *** 285,289 **** continue; ! i = navgfunc(ac->name, PCS_NICK); if (i >= 0) { --- 285,289 ---- continue; ! i = navgfunc((unsigned char *) ac->name, PCS_NICK); if (i >= 0) { *************** *** 294,298 **** } ! i = uavgfunc(ac->user->username, PCS_USER); if (i >= 0) { --- 294,298 ---- } ! i = uavgfunc((unsigned char *) ac->user->username, PCS_USER); if (i >= 0) { *************** *** 303,307 **** } ! i = gavgfunc(ac->info, PCS_GCOS); if (i >= 0) { --- 303,307 ---- } ! i = gavgfunc((unsigned char *) ac->info, PCS_GCOS); if (i >= 0) { *************** *** 477,487 **** int p; ! p = navgfunc(ac->name, PCS_NICK); *np = (p < 0 ? navg : p) * nscale; ! p = uavgfunc(ac->user->username, PCS_USER); *up = (p < 0 ? uavg : p) * uscale; ! p = gavgfunc(ac->info, PCS_GCOS); *gp = (p < 0 ? gavg : p) * gscale; } --- 477,487 ---- int p; ! p = navgfunc((unsigned char *) ac->name, PCS_NICK); *np = (p < 0 ? navg : p) * nscale; ! p = uavgfunc((unsigned char *) ac->user->username, PCS_USER); *up = (p < 0 ? uavg : p) * uscale; ! p = gavgfunc((unsigned char *) ac->info, PCS_GCOS); *gp = (p < 0 ? gavg : p) * gscale; } Index: s_auth.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_auth.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** s_auth.c 27 Jun 2005 03:02:10 -0000 1.1.1.1 --- s_auth.c 7 Jan 2006 22:13:26 -0000 1.2 *************** *** 55,59 **** struct sockaddr_in sock; struct sockaddr_in localaddr; ! int locallen; Debug((DEBUG_NOTICE, "start_auth(%x) fd %d status %d", --- 55,59 ---- struct sockaddr_in sock; struct sockaddr_in localaddr; ! socklen_t locallen; Debug((DEBUG_NOTICE, "start_auth(%x) fd %d status %d", *************** *** 65,70 **** get_client_name(cptr, TRUE)); #endif ! ircstp->is_abad++; ! return; } if (cptr->authfd >= MAXCONNECTIONS) --- 65,70 ---- get_client_name(cptr, TRUE)); #endif ! ircstp->is_abad++; ! return; } if (cptr->authfd >= MAXCONNECTIONS) *************** *** 142,146 **** struct sockaddr_in us, them; char authbuf[32]; ! int ulen, tlen; Debug((DEBUG_NOTICE, "write_authports(%x) fd %d authfd %d stat %d", --- 142,146 ---- struct sockaddr_in us, them; char authbuf[32]; ! socklen_t ulen, tlen; Debug((DEBUG_NOTICE, "write_authports(%x) fd %d authfd %d stat %d", Index: packet.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/packet.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** packet.c 27 Jun 2005 03:02:33 -0000 1.1.1.1 --- packet.c 7 Jan 2006 22:13:26 -0000 1.2 *************** *** 52,56 **** #ifdef HAVE_ENCRYPTION_ON if(IsRC4IN(cptr)) ! rc4_process_stream(cptr->serv->rc4_in, buffer, length); #endif --- 52,56 ---- #ifdef HAVE_ENCRYPTION_ON if(IsRC4IN(cptr)) ! rc4_process_stream(cptr->serv->rc4_in, (unsigned char *) buffer, length); #endif *************** *** 146,150 **** case RC4_NEXT_BUFFER: if(length) ! rc4_process_stream(cptr->serv->rc4_in, ch2, length); break; #endif --- 146,150 ---- case RC4_NEXT_BUFFER: if(length) ! rc4_process_stream(cptr->serv->rc4_in, (unsigned char *) ch2, length); break; #endif Index: zlink.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/zlink.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** zlink.c 9 Jul 2005 20:18:50 -0000 1.4 --- zlink.c 7 Jan 2006 22:13:26 -0000 1.5 *************** *** 138,144 **** *err = 0; ! zin->next_in = buffer; zin->avail_in = *len; ! zin->next_out = zipInBuf; zin->avail_out = zipInBufSize; --- 138,144 ---- *err = 0; ! zin->next_in = (Bytef *) buffer; zin->avail_in = *len; ! zin->next_out = (Bytef *) zipInBuf; zin->avail_out = zipInBufSize; *************** *** 155,159 **** return zin->msg ? zin->msg : "????"; } ! *nbuf = zin->next_in; *nbuflen = zin->avail_in; *len = zipInBufSize - zin->avail_out; --- 155,159 ---- return zin->msg ? zin->msg : "????"; } ! *nbuf = (char *) zin->next_in; *nbuflen = zin->avail_in; *len = zipInBufSize - zin->avail_out; *************** *** 212,218 **** } ! zout->next_in = z->buf; zout->avail_in = z->bufsize; ! zout->next_out = zipOutBuf; zout->avail_out = zipOutBufSize; --- 212,218 ---- } ! zout->next_in = (Bytef *) z->buf; zout->avail_in = z->bufsize; ! zout->next_out = (Bytef *) zipOutBuf; zout->avail_out = zipOutBufSize; Index: s_bsd.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_bsd.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** s_bsd.c 1 Jan 2006 00:55:22 -0000 1.6 --- s_bsd.c 7 Jan 2006 22:13:26 -0000 1.7 *************** *** 177,181 **** int errtmp = errno; /* debug may change 'errno' */ char *host; ! int err, len = sizeof(err); extern char *strerror(); --- 177,182 ---- int errtmp = errno; /* debug may change 'errno' */ char *host; ! int err; ! socklen_t len = sizeof(err); extern char *strerror(); *************** *** 212,216 **** int errtmp = errno; /* debug may change 'errno' */ char *host; ! int err, len = sizeof(err); extern char *strerror(); --- 213,218 ---- int errtmp = errno; /* debug may change 'errno' */ char *host; ! int err; ! socklen_t len = sizeof(err); extern char *strerror(); *************** *** 274,278 **** aListener lstn; struct sockaddr_in server; ! int ad[4], len = sizeof(server); char ipname[20]; --- 276,281 ---- aListener lstn; struct sockaddr_in server; ! int ad[4]; ! socklen_t len = sizeof(server); char ipname[20]; *************** *** 571,575 **** { struct sockaddr_in sk; ! int len = sizeof(struct sockaddr_in); /* If descriptor is a tty, special checking... * IT can't EVER be a tty */ --- 574,578 ---- { struct sockaddr_in sk; ! socklen_t len = sizeof(struct sockaddr_in); /* If descriptor is a tty, special checking... * IT can't EVER be a tty */ *************** *** 965,969 **** static void set_sock_opts(int fd, aClient * cptr) { ! int opt; #ifdef SO_REUSEADDR --- 968,972 ---- static void set_sock_opts(int fd, aClient * cptr) { ! socklen_t opt; #ifdef SO_REUSEADDR *************** *** 991,995 **** if (rcvbufmax == 0) { ! int optlen; optlen = sizeof(rcvbufmax); --- 994,998 ---- if (rcvbufmax == 0) { ! socklen_t optlen; optlen = sizeof(rcvbufmax); *************** *** 1015,1019 **** if (sndbufmax == 0) { ! int optlen; optlen = sizeof(sndbufmax); --- 1018,1022 ---- if (sndbufmax == 0) { ! socklen_t optlen; optlen = sizeof(sndbufmax); *************** *** 1090,1094 **** if (rcvbufmax == 0) { ! int optlen; optlen = sizeof(rcvbufmax); --- 1093,1097 ---- if (rcvbufmax == 0) { ! socklen_t optlen; optlen = sizeof(rcvbufmax); *************** *** 1111,1115 **** if (sndbufmax == 0) { ! int optlen; optlen = sizeof(sndbufmax); --- 1114,1118 ---- if (sndbufmax == 0) { ! socklen_t optlen; optlen = sizeof(sndbufmax); *************** *** 1132,1136 **** int get_sockerr(aClient * cptr) { ! int errtmp = errno, err = 0, len = sizeof(err); #ifdef SO_ERROR --- 1135,1140 ---- int get_sockerr(aClient * cptr) { ! int errtmp = errno, err = 0; ! socklen_t len = sizeof(err); #ifdef SO_ERROR *************** *** 1208,1212 **** char *s, *t; struct sockaddr_in addr; ! int len = sizeof(struct sockaddr_in); struct userBan *ban; --- 1212,1216 ---- char *s, *t; struct sockaddr_in addr; ! socklen_t len = sizeof(struct sockaddr_in); struct userBan *ban; *************** *** 1580,1584 **** { static struct sockaddr_in addr; ! int addrlen = sizeof(struct sockaddr_in); char host[HOSTLEN + 2]; int newfd; --- 1584,1588 ---- { static struct sockaddr_in addr; ! socklen_t addrlen = sizeof(struct sockaddr_in); char host[HOSTLEN + 2]; int newfd; |
From: T.S. L. <try...@us...> - 2006-01-07 22:13:36
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27806 Modified Files: CHANGES configure configure.in Log Message: gcc4 warnings fixed Index: CHANGES =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/CHANGES,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** CHANGES 2 Jan 2006 20:27:25 -0000 1.14 --- CHANGES 7 Jan 2006 22:13:26 -0000 1.15 *************** *** 34,37 **** --- 34,42 ---- 03/05/2005 - Fixed halfops cannot voice or devoice a user. [ #1193540 ] + ------------------ + Changes from Trystan + --------------- + 07/01/2006 - Fixed GCC4 compiler warnings + ------------------------ Changes from Sheik Index: configure =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/configure,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** configure 28 Jun 2005 02:51:34 -0000 1.2 --- configure 7 Jan 2006 22:13:26 -0000 1.3 *************** *** 1,8 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.57. # ! # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 ! # Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. --- 1,7 ---- #! /bin/sh [...5292 lines suppressed...] ! echo " ******* solid-ircd 3.4.7 Configuration Settings *******" echo " System Build Type: $target" echo " Socket Engine Type: $engine" --- 8919,8924 ---- ) echo "" ! echo " ******* solid-ircd Configuration Settings *******" echo " System Build Type: $target" echo " Socket Engine Type: $engine" *************** *** 8257,8263 **** echo " Install Directory: $prefix" echo "" - - - echo "" Before you compile please go through include/config.h and read all the new options - echo "" and configuration theres alot of new things that can be set and unset, after your - echo "" finish editing include/config.h then compile the ircd. --- 8929,8930 ---- Index: configure.in =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/configure.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** configure.in 27 Jun 2005 03:01:53 -0000 1.1.1.1 --- configure.in 7 Jan 2006 22:13:26 -0000 1.2 *************** *** 544,547 **** --- 544,565 ---- fi + AC_DEFUN([TYPE_SOCKLEN_T], + [AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, + [ + AC_TRY_COMPILE( + [#include <sys/types.h> + #include <sys/socket.h>], + [socklen_t len = 42; return 0;], + ac_cv_type_socklen_t=yes, + ac_cv_type_socklen_t=no) + ]) + if test $ac_cv_type_socklen_t != yes; then + AC_DEFINE(socklen_t, int, [Substitute for socklen_t]) + fi + ]) + + TYPE_SOCKLEN_T + + INSTALL_DIR="${prefix}" |
From: T.S. L. <try...@us...> - 2006-01-07 22:13:36
|
Update of /cvsroot/solidircd/solidircd-stable/zlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27806/zlib Modified Files: zconf.h Log Message: gcc4 warnings fixed |
From: Gabriel B. <sh...@us...> - 2006-01-02 20:27:41
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26516 Modified Files: CHANGES Log Message: minor updates. Index: CHANGES =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/CHANGES,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** CHANGES 2 Jan 2006 20:26:22 -0000 1.13 --- CHANGES 2 Jan 2006 20:27:25 -0000 1.14 *************** *** 37,42 **** Changes from Sheik ------------------------- ! 1/2/2006 - Added RESTRICT_C_LINES_ADMINONLY this function will restric stats C & c to admins only. (optional) ! 12/30/2005 - Fixed compile error when openssl was disabled. 03/09/2005 - Added g-line 03/09/2005 - Fixed misc conf parsing issues (from GeniusDex) --- 37,42 ---- Changes from Sheik ------------------------- ! 2/1/2006 - Added RESTRICT_C_LINES_ADMINONLY this function will restric stats C & c to admins only. (optional) ! 30/12/2005 - Fixed compile error when openssl was disabled. 03/09/2005 - Added g-line 03/09/2005 - Fixed misc conf parsing issues (from GeniusDex) |
From: Gabriel B. <sh...@us...> - 2006-01-02 20:26:35
|
Update of /cvsroot/solidircd/solidircd-stable/zlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26252/zlib Modified Files: zconf.h Log Message: minor updates. |
From: Gabriel B. <sh...@us...> - 2006-01-02 20:26:35
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26252 Modified Files: CHANGES TODO Log Message: minor updates. Index: CHANGES =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/CHANGES,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** CHANGES 1 Jan 2006 01:01:28 -0000 1.12 --- CHANGES 2 Jan 2006 20:26:22 -0000 1.13 *************** *** 37,40 **** --- 37,41 ---- Changes from Sheik ------------------------- + 1/2/2006 - Added RESTRICT_C_LINES_ADMINONLY this function will restric stats C & c to admins only. (optional) 12/30/2005 - Fixed compile error when openssl was disabled. 03/09/2005 - Added g-line Index: TODO =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/TODO,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TODO 26 Dec 2005 06:37:14 -0000 1.5 --- TODO 2 Jan 2006 20:26:22 -0000 1.6 *************** *** 37,40 **** --- 37,44 ---- + [/] Fix Whois on linked servers + not showing the full host. + + Documentation Team: |
From: Gabriel B. <sh...@us...> - 2006-01-02 20:26:35
|
Update of /cvsroot/solidircd/solidircd-stable/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26252/src Modified Files: m_stats.c s_user.c Log Message: minor updates. Index: s_user.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_user.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** s_user.c 27 Dec 2005 19:38:13 -0000 1.18 --- s_user.c 2 Jan 2006 20:26:22 -0000 1.19 *************** *** 35,39 **** #include <utmp.h> #include <fcntl.h> ! #include "h.h" #ifdef FLUD #include "blalloc.h" --- 35,39 ---- #include <utmp.h> #include <fcntl.h> ! #include "h.h" #ifdef FLUD #include "blalloc.h" *************** *** 2179,2185 **** a2cptr = acptr->uplink; ! /* The WHOIS Notice code has been ported from solid 2.2.20 from 1999 acient baby. * It was originaly written by Toshi Morita(tm2) ! * It has been slightly modified for solid3.4.7 by Sheik on 16/05/05 * */ --- 2179,2185 ---- a2cptr = acptr->uplink; ! /* The WHOIS Notice code has been ported from solid 2.2.20. * It was originaly written by Toshi Morita(tm2) ! * It has been slightly modified for solid-ircd3.4.7 by Sheik on 16/05/05 * */ *************** *** 3373,3377 **** #ifdef STRICT_HOSTMASK case 'v': /* Users Can't unset themselves +v*/ ! sendto_one(sptr, ":%s NOTICE %s :Permission denied, this network does not allow you to unset +v.", me.name, parv[0], sptr->user->host); break; --- 3373,3377 ---- #ifdef STRICT_HOSTMASK case 'v': /* Users Can't unset themselves +v*/ ! sendto_one(sptr, ":%s NOTICE %s :Permission denied, this network does not allow you to unset +v. For more information visit", WEBSITE, me.name, parv[0], sptr->user->host); break; Index: m_stats.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/m_stats.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** m_stats.c 4 Dec 2005 14:40:45 -0000 1.4 --- m_stats.c 2 Jan 2006 20:26:22 -0000 1.5 *************** *** 599,602 **** --- 599,615 ---- * single responce. Will work on this later -epi */ + + + /* Only Server Administrators should see this information -Sheik 02-jan-2006*/ + + #ifdef RESTRICT_C_LINES_ADMINONLY + if (!IsAdmin(sptr)) { + sendto_one(sptr, err_str(ERR_NOPRIVILEGES), + me.name, parv[0]); + return 0; + } + + #endif + #ifdef HIDEULINEDSERVS if (!IsAnOper(sptr)) |
From: Gabriel B. <sh...@us...> - 2006-01-02 20:26:35
|
Update of /cvsroot/solidircd/solidircd-stable/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26252/include Modified Files: config.h Log Message: minor updates. Index: config.h =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/include/config.h,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** config.h 30 Dec 2005 21:29:28 -0000 1.16 --- config.h 2 Jan 2006 20:26:22 -0000 1.17 *************** *** 211,214 **** --- 211,223 ---- /* + * RESTRICT_ADMINONLY + * This function will restrict stats C & c for server administrators only. + * + */ + + #define RESTRICT_C_LINES_ADMINONLY + + + /* * TOYS * Define this if you want to enable our toys. |
From: Juan B. <tu...@us...> - 2006-01-01 01:01:36
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30051 Modified Files: CHANGES Log Message: Fixed task #60 Index: CHANGES =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/CHANGES,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** CHANGES 30 Dec 2005 21:29:27 -0000 1.11 --- CHANGES 1 Jan 2006 01:01:28 -0000 1.12 *************** *** 15,18 **** --- 15,19 ---- Changes from Tux --------------- + 30/12/2005 - Fixed Task #60 on solid-ircd.com 25/12/2005 - Fixed elmer issue. 25/12/2005 - Fixed g-line message issue. |
From: Juan B. <tu...@us...> - 2006-01-01 00:55:31
|
Update of /cvsroot/solidircd/solidircd-stable/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28247/src Modified Files: s_bsd.c s_misc.c Log Message: Index: s_bsd.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_bsd.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** s_bsd.c 30 Dec 2005 21:29:28 -0000 1.5 --- s_bsd.c 1 Jan 2006 00:55:22 -0000 1.6 *************** *** 905,911 **** if (cptr->fd >= 0) { - #ifdef HAVE_SSL - if (!IsDead (cptr)) - #endif dump_connections(cptr->fd); local[cptr->fd] = NULL; --- 905,908 ---- Index: s_misc.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_misc.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** s_misc.c 9 Jul 2005 23:30:03 -0000 1.7 --- s_misc.c 1 Jan 2006 00:55:22 -0000 1.8 *************** *** 637,644 **** sptr->hostip); ! sendto_serv_butone(NULL, ":%s CONOPS :Client exiting: %s (%s@%s) [%s] [%s]", ! me.name, sptr->name, sptr->user->username, ! sptr->user->host, (sptr->flags & FLAGS_NORMALEX) ? "Client Quit" : ! comment, sptr->hostip); } --- 637,644 ---- sptr->hostip); ! sendto_serv_butone(NULL, ":%s CONOPS :Client exiting: %s (%s@%s) [%s] [%s]", ! me.name, sptr->name, sptr->user->username, ! sptr->user->host, (sptr->flags & FLAGS_NORMALEX) ? "Client Quit" : ! comment, sptr->hostip); } |
From: Gabriel B. <sh...@us...> - 2005-12-30 22:17:59
|
Update of /cvsroot/solidircd/solidircd-stable/zlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21808/zlib Modified Files: zconf.h Log Message: update. |
From: Gabriel B. <sh...@us...> - 2005-12-30 21:29:40
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12522 Modified Files: CHANGES Log Message: If openssl was disabled ircd wont compile, fixed. Index: CHANGES =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/CHANGES,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** CHANGES 26 Dec 2005 06:37:14 -0000 1.10 --- CHANGES 30 Dec 2005 21:29:27 -0000 1.11 *************** *** 36,39 **** --- 36,40 ---- Changes from Sheik ------------------------- + 12/30/2005 - Fixed compile error when openssl was disabled. 03/09/2005 - Added g-line 03/09/2005 - Fixed misc conf parsing issues (from GeniusDex) |
From: Gabriel B. <sh...@us...> - 2005-12-30 21:29:40
|
Update of /cvsroot/solidircd/solidircd-stable/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12522/src Modified Files: s_bsd.c send.c Log Message: If openssl was disabled ircd wont compile, fixed. Index: send.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/send.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** send.c 5 Jul 2005 21:53:42 -0000 1.4 --- send.c 30 Dec 2005 21:29:28 -0000 1.5 *************** *** 2063,2068 **** mc->s_bufs.m += sizeof(selfbuf); mc->s_bufs.c++; mc->s_bufs.m += sizeof(rc4buf); ! return 0; } --- 2063,2071 ---- mc->s_bufs.m += sizeof(selfbuf); mc->s_bufs.c++; + #ifdef HAVE_ENCRYPTION_ON mc->s_bufs.m += sizeof(rc4buf); ! #endif return 0; } + + Index: s_bsd.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_bsd.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** s_bsd.c 5 Jul 2005 21:53:41 -0000 1.4 --- s_bsd.c 30 Dec 2005 21:29:28 -0000 1.5 *************** *** 1270,1274 **** if (!IsSSL (acptr)) { ! /* sockets inherit the options of their parents.. do we need these? */ set_non_blocking(acptr->fd, acptr); --- 1270,1274 ---- if (!IsSSL (acptr)) { ! #endif /* sockets inherit the options of their parents.. do we need these? */ set_non_blocking(acptr->fd, acptr); *************** *** 1322,1326 **** } #endif ! #endif lin.flags = ASYNC_CLIENT; lin.value.cptr = acptr; --- 1322,1326 ---- } #endif ! lin.flags = ASYNC_CLIENT; lin.value.cptr = acptr; |
From: Gabriel B. <sh...@us...> - 2005-12-30 21:29:40
|
Update of /cvsroot/solidircd/solidircd-stable/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12522/include Modified Files: config.h Log Message: If openssl was disabled ircd wont compile, fixed. Index: config.h =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/include/config.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** config.h 26 Dec 2005 05:21:38 -0000 1.15 --- config.h 30 Dec 2005 21:29:28 -0000 1.16 *************** *** 292,296 **** * services that are not noquit compliant. */ ! #define NOQUIT /* --- 292,296 ---- * services that are not noquit compliant. */ ! #undef NOQUIT /* |
From: Gabriel B. <sh...@us...> - 2005-12-30 21:29:40
|
Update of /cvsroot/solidircd/solidircd-stable/zlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12522/zlib Modified Files: zconf.h Log Message: If openssl was disabled ircd wont compile, fixed. |
From: Gabriel B. <sh...@us...> - 2005-12-27 19:38:23
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26530 Modified Files: Makefile.in Log Message: Yea I know I broke this earlier heh. Index: Makefile.in =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/Makefile.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.in 27 Jun 2005 03:01:52 -0000 1.1.1.1 --- Makefile.in 27 Dec 2005 19:38:13 -0000 1.2 *************** *** 50,54 **** @echo "* For help with solid-ircd, please refer to http://solid-ircd.com *" @echo "* If you wan to come to our dev channel which you're more than welcome to. *" ! @echo "* its irc.solid-ircd.com #Solid *" @echo "******************************************************************************" --- 50,54 ---- @echo "* For help with solid-ircd, please refer to http://solid-ircd.com *" @echo "* If you wan to come to our dev channel which you're more than welcome to. *" ! @echo "* its irc.vidgamechat.net #Solid *" @echo "******************************************************************************" |
From: Gabriel B. <sh...@us...> - 2005-12-27 19:38:23
|
Update of /cvsroot/solidircd/solidircd-stable/zlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26530/zlib Modified Files: zconf.h Log Message: Yea I know I broke this earlier heh. |
From: Gabriel B. <sh...@us...> - 2005-12-27 19:38:23
|
Update of /cvsroot/solidircd/solidircd-stable/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26530/doc Modified Files: Makefile.in Log Message: Yea I know I broke this earlier heh. Index: Makefile.in =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.in 26 Dec 2005 06:37:14 -0000 1.3 --- Makefile.in 27 Dec 2005 19:38:13 -0000 1.4 *************** *** 47,51 **** touch $(INSTALL_DIR)/ircd.motd; \ echo "This is the default solid MOTD" >> $(INSTALL_DIR)/ircd.motd; \ - fi --- 47,50 ---- |
From: Gabriel B. <sh...@us...> - 2005-12-27 19:38:20
|
Update of /cvsroot/solidircd/solidircd-stable/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26530/src Modified Files: s_user.c Log Message: Yea I know I broke this earlier heh. Index: s_user.c =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/src/s_user.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** s_user.c 26 Dec 2005 05:21:38 -0000 1.17 --- s_user.c 27 Dec 2005 19:38:13 -0000 1.18 *************** *** 2469,2472 **** --- 2469,2500 ---- /* + * m_quit + * parv[0] = sender prefix + * parv[1] = comment + */ + + /* + int + m_quit(aClient *cptr, aClient *sptr, int parc, char *parv[]) + { + char *reason = (parc > 1 && parv[1]) ? parv[1] : cptr->name; + char comment[TOPICLEN + 1]; + + sptr->flags |= FLAGS_NORMALEX; + if (!IsServer(cptr)) + { + strcpy(comment, "Quit: "); + strncpy(comment + 6, reason, TOPICLEN - 6); + comment[TOPICLEN] = 0; + return exit_client(cptr, sptr, sptr, comment); + } + else + return exit_client(cptr, sptr, sptr, reason); + } + + */ + + + /* * m_kill * parv[0] = sender prefix |
From: Gabriel B. <sh...@us...> - 2005-12-26 17:47:15
|
Update of /cvsroot/solidircd/solidircd-stable/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3642/doc Modified Files: opers.txt ssl.txt ssltutorial.txt Log Message: Documentation update. Index: opers.txt =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/opers.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** opers.txt 27 Jun 2005 03:02:58 -0000 1.1.1.1 --- opers.txt 26 Dec 2005 17:47:06 -0000 1.2 *************** *** 31,35 **** *+n - Can see routing notices. *+o - Is a global IRC Operator. ! *+y - Can see certain information requests. (e.g. /stats) *+A - Is a server administrator. *+F - Can bypass the ircd's recvq throttling --- 31,36 ---- *+n - Can see routing notices. *+o - Is a global IRC Operator. ! *+y - Can see certain information requests. (e.g. /stats) ! Also Notices Opers when a user does a /whois on him. *+A - Is a server administrator. *+F - Can bypass the ircd's recvq throttling *************** *** 37,42 **** *+O - Is a local IRC Operator. *+C - Can see global connections/exits ! +*H - Allows you to hide your oper status ! +*E - Notices opers when a user does a /whois on him. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= --- 38,42 ---- *+O - Is a local IRC Operator. *+C - Can see global connections/exits ! +*H - Allows you to hide your oper status =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= *************** *** 170,177 **** --- 170,202 ---- KLINE 10 <nick|user@host> :cool off for 10 minutes + + UNKLINE - UNKLINE <user@host> -- If compiled with UNKLINE -- Will attempt to unkline the given <user@host> + + + + GLINE - GLINE [minutes] <nick|user@host> :[reason] + Adds a GLINE to the ircd.conf or glines.conf file which + will ban the specified user from using that server. + The banned client will receive a message saying he/she + is banned with reason [reason] + + For a temporary GLINE, length of gline is given in + minutes as the first parameter i.e. + GLINE 10 <nick|user@host> :cool off for 10 minutes + + + + UNGLINE - UNGLINE <user@host> + -- If compiled with UNGLINE -- + Will attempt to ungline the given <user@host> + + + +SHUN - SHUN [seconds] <nick|user@host> :[reason] + Freezes the user from the entire network for the specified amount of + seconds. + + To remove use /shun - <nick|user@host> + + SET - SET <option> <value> <option> can be one of the following: Index: ssltutorial.txt =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/ssltutorial.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ssltutorial.txt 27 Jun 2005 03:02:58 -0000 1.1.1.1 --- ssltutorial.txt 26 Dec 2005 17:47:07 -0000 1.2 *************** *** 1,7 **** ! SSL Tutorial v0.1 This document was originaly written by mj (mj...@so...) on 10/05/2005 ! Last revised by Gabriel Baez (sh...@so...) on 15/05/2005 ! How to make Solid-IRCd ready for SSL? At first: Why? :) --- 1,7 ---- ! SSL Tutorial v0.2 This document was originaly written by mj (mj...@so...) on 10/05/2005 ! Last revised by Gabriel Baez (sh...@so...) on 12/26/2005 ! How to make solid-ircd ready for SSL? At first: Why? :) *************** *** 13,23 **** and communicate via a query window. ! It's presumed that you have already configured, compiled and installedSolid-IRCd ! without any errors. In addition to that you should have installed that latest ! versions of OpenSSL and Kerberos to use the SSL encryption. First we have to generate a public key and a secret key for SSL encryption with ! Solid-IRCd. For this purpose we have to use the "makecert.sh" shell script ! that's in the "ssl" directory of the Soild-IRCd source directory you extracted before. --- 13,23 ---- and communicate via a query window. ! It's presumed that you have already configured, compiled and installed ! solid-ircd without any errors. In addition to that you should have installed the latest ! version of OpenSSL and Kerberos to use the SSL encryption. First we have to generate a public key and a secret key for SSL encryption with ! solid-ircd. For this purpose we have to use the "makecert.sh" shell script ! that's in the "ssl" directory of the solid-ircd source directory you extracted before. *************** *** 32,36 **** private key. ! It's suggested to create a subdirectory called "ssl" in Solid-IRCd's install directory, e. g. "/usr/local/solid-ircd/ssl". Move the two key files there. You can rename it, if you want to, e. g. "myserver.pem" and "myserverkey.pem". Then --- 32,36 ---- private key. ! It's suggested to create a subdirectory called "ssl" in solid-ircd's install directory, e. g. "/usr/local/solid-ircd/ssl". Move the two key files there. You can rename it, if you want to, e. g. "myserver.pem" and "myserverkey.pem". Then *************** *** 39,43 **** is able to read and write: "chmod 600 myserver.pem myserverkey.pem" ! Then you have to tell Solid-IRCd where the key files live. That's done by editing the "ssl" block in your configuration: --- 39,43 ---- is able to read and write: "chmod 600 myserver.pem myserverkey.pem" ! Then you have to tell solid-ircd where the key files live. That's done by editing the "ssl" block in your configuration: Index: ssl.txt =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/ssl.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ssl.txt 27 Jun 2005 03:03:00 -0000 1.1.1.1 --- ssl.txt 26 Dec 2005 17:47:07 -0000 1.2 *************** *** 1,3 **** $Id$ ! How to Set up SSL \ No newline at end of file --- 1,3 ---- $Id$ ! See ssltutorial.txt \ No newline at end of file |
From: Gabriel B. <sh...@us...> - 2005-12-26 06:43:04
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5265 Modified Files: README Log Message: Minimum document update. Index: README =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/README,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** README 9 Jul 2005 15:11:12 -0000 1.4 --- README 26 Dec 2005 06:42:56 -0000 1.5 *************** *** 3,16 **** solid-ircd 3.4.7 is an Internet Relay Chat Daemon based on bahamut 1.8.4 developed by the bahamut team. Our main goal is to provide users with a stable server, ! and at the same time, a more secure server, while having all the features of bahamut and more. ! Feel free to drop by our irc channel at irc.vidgamechat.net #Solid - ------------------------- Features that stock bahamut dosen't have that we added. ------------------------- * Client side SSL support. - * OpenSSL encryption for server<->server connections * Clients and Operators host masking support. * WHATMODES reports what user mode a client currently has on /WHOIS --- 3,15 ---- solid-ircd 3.4.7 is an Internet Relay Chat Daemon based on bahamut 1.8.4 developed by the bahamut team. Our main goal is to provide users with a stable server, ! and at the same time, a more secure server, while having all the features of bahamut. ! ! Features that stock bahamut dosen't have that we added. ------------------------- * Client side SSL support. * Clients and Operators host masking support. * WHATMODES reports what user mode a client currently has on /WHOIS *************** *** 19,27 **** * +C allows the operator to receive Global Connections/Exits. * SHUN this will freeze a user for the certain amount of time seconds. * AUTO UMODE R this feature will allow you to automatically set +R on connecting users, so that unregistered users will not be able to privmsg them, this prevents privmsg spams. * Anope HostServ Support & vident support. * +D Channel mode that prevents unresolved clients from joining a channel. Only Resolved Clients can set this mode & Opers. ! *+S Channel mode, allows only Secure Connection to enter the channel. Only SSL Clients can set this mode & Opers. * HalfOps Support. * +N Channel mode that prevent users from changing their nickname. --- 18,27 ---- * +C allows the operator to receive Global Connections/Exits. * SHUN this will freeze a user for the certain amount of time seconds. + * G-line will issue a global server ban. * AUTO UMODE R this feature will allow you to automatically set +R on connecting users, so that unregistered users will not be able to privmsg them, this prevents privmsg spams. * Anope HostServ Support & vident support. * +D Channel mode that prevents unresolved clients from joining a channel. Only Resolved Clients can set this mode & Opers. ! * +S Channel mode, allows only Secure Connection to enter the channel. Only SSL Clients can set this mode & Opers. * HalfOps Support. * +N Channel mode that prevent users from changing their nickname. *************** *** 30,44 **** are told to use /qlist instead, theres also a special bot_class to use for exception for search bots such as netsplit.de & searchirc.com. * IRCOP LIST this feature will list all available ircops on the server, if they have +H set they will not be shown on the list. /IRCOPS - * +c blocks all control codes * Option to disable DCCALLOW * STATS P this feature allows the opers to see what ports (also shows ssl ports if any) are available on the server this can be made accessible for users. * bsd jail support. ! ----------------- ! Suggestions ----------------- ! This is a our first stable release is different than solid3.4.6 so please review template.conf and include/config.h ! carefully alot of things have changed. *** IMPORTANT *** --- 30,44 ---- are told to use /qlist instead, theres also a special bot_class to use for exception for search bots such as netsplit.de & searchirc.com. * IRCOP LIST this feature will list all available ircops on the server, if they have +H set they will not be shown on the list. /IRCOPS * Option to disable DCCALLOW * STATS P this feature allows the opers to see what ports (also shows ssl ports if any) are available on the server this can be made accessible for users. * bsd jail support. ! ! ! Note ----------------- ! If you're upgrading from solid-ircd 3.4.6 or below, then you will need to review template.conf in docs/template.conf lots of changes have been ! made. *** IMPORTANT *** |
From: Gabriel B. <sh...@us...> - 2005-12-26 06:37:22
|
Update of /cvsroot/solidircd/solidircd-stable/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4691/doc Modified Files: Makefile.in template.conf Log Message: Minimum document update. Index: Makefile.in =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/Makefile.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.in 9 Jul 2005 20:18:49 -0000 1.2 --- Makefile.in 26 Dec 2005 06:37:14 -0000 1.3 *************** *** 25,29 **** INSTALL_DIR=@INSTALL_DIR@ ! FILES=template.conf elmer.conf all: --- 25,29 ---- INSTALL_DIR=@INSTALL_DIR@ ! FILES=opers.txt reference.conf template.conf elmer.conf all: *************** *** 47,50 **** --- 47,51 ---- touch $(INSTALL_DIR)/ircd.motd; \ echo "This is the default solid MOTD" >> $(INSTALL_DIR)/ircd.motd; \ + fi Index: template.conf =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/template.conf,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** template.conf 4 Sep 2005 18:57:33 -0000 1.7 --- template.conf 26 Dec 2005 06:37:14 -0000 1.8 *************** *** 825,826 **** --- 825,827 ---- + include "elmer.conf"; \ No newline at end of file |
From: Gabriel B. <sh...@us...> - 2005-12-26 06:37:22
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4691 Modified Files: CHANGES TODO Log Message: Minimum document update. Index: CHANGES =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/CHANGES,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** CHANGES 26 Dec 2005 05:21:37 -0000 1.9 --- CHANGES 26 Dec 2005 06:37:14 -0000 1.10 *************** *** 63,67 **** - no identd response (ident is "unknown") ! 4/7/2005 - removed rquit the code needs to be reviewed and will be delayed for 3.4.8 4/7/2005 - rework memory accounting,add MEMTRACE for debugging, minor memroy leak fix. 26/06/2005 - Fixed a bug were users real host would show on watch when they connected. --- 63,67 ---- - no identd response (ident is "unknown") ! 4/7/2005 - rework memory accounting,add MEMTRACE for debugging, minor memroy leak fix. 26/06/2005 - Fixed a bug were users real host would show on watch when they connected. *************** *** 69,73 **** 30/05/2005 - Added Deaf Mode, This mode will prevent user with said mode from receiving channel messages. This mode can be applied by the user or an oper. It can decrese bandwidth usage. ! 21/05/2005 - Applied a hostmask tweak from Crako thnx. 21/05/2005 - Fixed a minor bug, when user was kicked, it would show on their whois that they were still there. thanks to Crako for reporting this. 17/05/2005 - Fixed LIST C>this was broken in dreamforge... --- 69,73 ---- 30/05/2005 - Added Deaf Mode, This mode will prevent user with said mode from receiving channel messages. This mode can be applied by the user or an oper. It can decrese bandwidth usage. ! 21/05/2005 - Applied a hostmask tweak from Crako thnx. 21/05/2005 - Fixed a minor bug, when user was kicked, it would show on their whois that they were still there. thanks to Crako for reporting this. 17/05/2005 - Fixed LIST C>this was broken in dreamforge... Index: TODO =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/TODO,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TODO 9 Jul 2005 19:55:14 -0000 1.4 --- TODO 26 Dec 2005 06:37:14 -0000 1.5 *************** *** 19,26 **** Developers Todo list: ! ! ! ! [/] Complete elmer Implementation Being worked by: Sheik Progress: 95% --- 19,23 ---- Developers Todo list: ! [/] Sync with bahamut 1.8.4 Being worked by: Sheik Progress: 95% *************** *** 28,37 **** ! [/] Sync with bahamut 1.8.4 ! Being worked by: Sheik ! Progress: 95% Description: Documentation Team: -------------------- --- 25,41 ---- ! ! [X] Complete elmer Implementation ! Being worked by: Tux ! Progress: 100% Description: + [X] Implement G-line + Being worked by: Sheik & Tux + Progress: 100% + + + Documentation Team: -------------------- *************** *** 46,64 **** -Dutch Translators. ! -------------------- Documentation team to do list: Quality Assurance Team: ! -------------------- Waqario Trystan Fl00k Sheik ! -------------------- [/] Test Solid3.4.7(stable) ! Being done by: Sheik ! Progress: Smooth! ! Status: In progress. \ No newline at end of file --- 50,76 ---- -Dutch Translators. ! ---------------------------- ! Documentation team to do list: + [/] Write HTML IRCD Documentation + Being Worked on by : + Progress: + Description: + + ------------------------ + Quality Assurance Team: ! ----------------------- Waqario Trystan Fl00k Sheik ! ----------------------- [/] Test Solid3.4.7(stable) ! Being done by: ! Progress: ! Status: \ No newline at end of file |
From: Gabriel B. <sh...@us...> - 2005-12-26 06:37:22
|
Update of /cvsroot/solidircd/solidircd-stable/zlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4691/zlib Modified Files: Makefile zconf.h Log Message: Minimum document update. Index: zconf.h =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/zlib/zconf.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** zconf.h 26 Dec 2005 05:21:38 -0000 1.12 --- zconf.h 26 Dec 2005 06:37:14 -0000 1.13 *************** *** 276,280 **** #endif ! #if 1 /* HAVE_UNISTD_H -- this line is updated by ./configure */ # include <sys/types.h> /* for off_t */ # include <unistd.h> /* for SEEK_* and off_t */ --- 276,280 ---- #endif ! #if 0 /* HAVE_UNISTD_H -- this line is updated by ./configure */ # include <sys/types.h> /* for off_t */ # include <unistd.h> /* for SEEK_* and off_t */ Index: Makefile =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/zlib/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 26 Dec 2005 05:21:38 -0000 1.4 --- Makefile 26 Dec 2005 06:37:14 -0000 1.5 *************** *** 17,23 **** # make install prefix=$HOME ! CC=gcc ! CFLAGS=-O3 -DUSE_MMAP #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7 #CFLAGS=-g -DDEBUG --- 17,23 ---- # make install prefix=$HOME ! CC=cc ! CFLAGS=-O #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7 #CFLAGS=-g -DDEBUG *************** *** 25,31 **** # -Wstrict-prototypes -Wmissing-prototypes ! LDFLAGS=-L. libz.a ! LDSHARED=gcc ! CPP=gcc -E LIBS=libz.a --- 25,31 ---- # -Wstrict-prototypes -Wmissing-prototypes ! LDFLAGS=libz.a ! LDSHARED=$(CC) ! CPP=$(CC) -E LIBS=libz.a *************** *** 40,48 **** EXE= ! prefix =/usr/local ! exec_prefix =${prefix} ! libdir =${exec_prefix}/lib ! includedir =${prefix}/include ! mandir =${prefix}/share/man man3dir = ${mandir}/man3 --- 40,48 ---- EXE= ! prefix = /usr/local ! exec_prefix = ${prefix} ! libdir = ${exec_prefix}/lib ! includedir = ${prefix}/include ! mandir = ${prefix}/share/man man3dir = ${mandir}/man3 |
From: Juan B. <tu...@us...> - 2005-12-26 05:32:38
|
Update of /cvsroot/solidircd/solidircd-stable/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30404/include Modified Files: patchlevel.h Log Message: Sheik scolded me Index: patchlevel.h =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/include/patchlevel.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** patchlevel.h 26 Dec 2005 05:21:38 -0000 1.2 --- patchlevel.h 26 Dec 2005 05:32:27 -0000 1.3 *************** *** 32,36 **** #define MAJOR 3 #define MINOR 4 ! #define PATCH 8 #define PATCHES "stable" --- 32,36 ---- #define MAJOR 3 #define MINOR 4 ! #define PATCH 7 #define PATCHES "stable" |