You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(24) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ben...@id...> - 2004-05-25 07:46:42
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: <dia...@us...> - 2003-10-26 18:46:48
|
Update of /cvsroot/genericircd/gircd2.0/include In directory sc8-pr-cvs1:/tmp/cvs-serv14927/include Modified Files: ircd_features.h Log Message: Fixed a missing , Index: ircd_features.h =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/include/ircd_features.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ircd_features.h 26 Oct 2003 18:37:52 -0000 1.4 --- ircd_features.h 26 Oct 2003 18:44:38 -0000 1.5 *************** *** 53,57 **** FEAT_USERCLOAK, FEAT_USER_CLOAK_HOST, ! FEAT_WHOIS_SERVICES /* features that probably should not be touched */ FEAT_KILLCHASETIMELIMIT, --- 53,57 ---- FEAT_USERCLOAK, FEAT_USER_CLOAK_HOST, ! FEAT_WHOIS_SERVICES, /* features that probably should not be touched */ FEAT_KILLCHASETIMELIMIT, |
From: <dia...@us...> - 2003-10-26 18:38:17
|
Update of /cvsroot/genericircd/gircd2.0/include In directory sc8-pr-cvs1:/tmp/cvs-serv13864/include Modified Files: ircd_features.h Log Message: Sigh .. Index: ircd_features.h =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/include/ircd_features.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ircd_features.h 26 Oct 2003 16:56:26 -0000 1.3 --- ircd_features.h 26 Oct 2003 18:37:52 -0000 1.4 *************** *** 53,57 **** FEAT_USERCLOAK, FEAT_USER_CLOAK_HOST, ! /* features that probably should not be touched */ FEAT_KILLCHASETIMELIMIT, --- 53,57 ---- FEAT_USERCLOAK, FEAT_USER_CLOAK_HOST, ! FEAT_WHOIS_SERVICES /* features that probably should not be touched */ FEAT_KILLCHASETIMELIMIT, *************** *** 98,103 **** FEAT_SETHOST_USER, FEAT_SETHOST_AUTO, ! FEAT_WHOIS_SERVICES, ! /* features that affect global opers on this server */ FEAT_OPER_KILL, --- 98,102 ---- FEAT_SETHOST_USER, FEAT_SETHOST_AUTO, ! /* features that affect global opers on this server */ FEAT_OPER_KILL, |
From: <dia...@us...> - 2003-10-26 18:35:13
|
Update of /cvsroot/genericircd/gircd2.0/ircd In directory sc8-pr-cvs1:/tmp/cvs-serv12617/ircd Modified Files: s_user.c Log Message: Fixed a couple of warnings. Index: s_user.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/s_user.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** s_user.c 26 Oct 2003 18:12:58 -0000 1.5 --- s_user.c 26 Oct 2003 18:30:21 -0000 1.6 *************** *** 736,740 **** ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(new_client))); char *cloaked_host; ! cloaked_host = crypt(ip_to_hide, "AA"); int cuc=0; while ( cloaked_host[cuc] ) { --- 736,740 ---- ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(new_client))); char *cloaked_host; ! cloaked_host = (char*)crypt(ip_to_hide, "AA"); int cuc=0; while ( cloaked_host[cuc] ) { *************** *** 1124,1128 **** ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(cptr))); char *cloaked_host; ! cloaked_host = crypt(ip_to_hide, "AA"); int cuc=0; while ( cloaked_host[cuc] ) { --- 1124,1128 ---- ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(cptr))); char *cloaked_host; ! cloaked_host = (char*)crypt(ip_to_hide, "AA"); int cuc=0; while ( cloaked_host[cuc] ) { |
From: <dia...@us...> - 2003-10-26 18:13:36
|
Update of /cvsroot/genericircd/gircd2.0/ircd In directory sc8-pr-cvs1:/tmp/cvs-serv10236/ircd Modified Files: s_user.c Log Message: Hope that fixes last of the usercloak problems. Index: s_user.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/s_user.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** s_user.c 26 Oct 2003 16:56:26 -0000 1.4 --- s_user.c 26 Oct 2003 18:12:58 -0000 1.5 *************** *** 1119,1123 **** SetFlag(cptr, flag); } ! else { sendcmdto_common_channels_butone(cptr, CMD_QUIT, cptr, ":User cloaking in progress..."); char *ip_to_hide; --- 1119,1123 ---- SetFlag(cptr, flag); } ! if (!HasFlag(cptr, FLAG_ACCOUNT)) { sendcmdto_common_channels_butone(cptr, CMD_QUIT, cptr, ":User cloaking in progress..."); char *ip_to_hide; |
From: <dia...@us...> - 2003-10-26 17:47:56
|
Update of /cvsroot/genericircd/gircd2.0/ircd In directory sc8-pr-cvs1:/tmp/cvs-serv5843/ircd Modified Files: m_whois.c Log Message: Whois fixed to show the real host in case of a usercloak. Index: m_whois.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/m_whois.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** m_whois.c 26 Oct 2003 16:56:26 -0000 1.2 --- m_whois.c 26 Oct 2003 17:44:02 -0000 1.3 *************** *** 211,215 **** send_reply(sptr, RPL_WHOISACCOUNT, name, user->account); ! if ((HasHiddenHost(acptr) || HasSetHost(acptr)) && (IsAnOper(sptr) || acptr == sptr)) send_reply(sptr, RPL_WHOISACTUALLY, name, user->realusername, user->realhost, ircd_ntoa((const char*) &(cli_ip(acptr)))); --- 211,215 ---- send_reply(sptr, RPL_WHOISACCOUNT, name, user->account); ! if ((HasHiddenHost(acptr) || HasSetHost(acptr) || feature_bool(FEAT_USERCLOAK)) && (IsAnOper(sptr) || acptr == sptr)) send_reply(sptr, RPL_WHOISACTUALLY, name, user->realusername, user->realhost, ircd_ntoa((const char*) &(cli_ip(acptr)))); |
From: <dia...@us...> - 2003-10-26 16:59:42
|
Update of /cvsroot/genericircd/gircd2.0/include In directory sc8-pr-cvs1:/tmp/cvs-serv30501/include Modified Files: gline.h ircd_features.h numeric.h Log Message: Added WHOIS SERVICES and hopefully fixed the G-Line bug. Index: gline.h =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/include/gline.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** gline.h 12 Jul 2003 20:08:13 -0000 1.1.1.1 --- gline.h 26 Oct 2003 16:56:26 -0000 1.2 *************** *** 33,42 **** struct StatDesc; ! #define GLINE_MAX_EXPIRE 31536000 /* max expire: 1 year */ struct Gline { struct Gline *gl_next; struct Gline**gl_prev_p; - char *gl_nick; char *gl_user; char *gl_host; --- 33,41 ---- struct StatDesc; ! #define GLINE_MAX_EXPIRE 604800 /* max expire: 7 days */ struct Gline { struct Gline *gl_next; struct Gline**gl_prev_p; char *gl_user; char *gl_host; *************** *** 71,75 **** #define GlineIsLocal(g) ((g)->gl_flags & GLINE_LOCAL) - #define GlineNick(g) ((g)->gl_nick) #define GlineUser(g) ((g)->gl_user) #define GlineHost(g) ((g)->gl_host) --- 70,73 ---- *************** *** 97,101 **** char *param); extern int gline_memory_count(size_t *gl_size); - extern struct Gline *IsNickGlined(struct Client *cptr, char *nick); #endif /* INCLUDED_gline_h */ --- 95,98 ---- Index: ircd_features.h =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/include/ircd_features.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ircd_features.h 25 Oct 2003 20:30:24 -0000 1.2 --- ircd_features.h 26 Oct 2003 16:56:26 -0000 1.3 *************** *** 98,101 **** --- 98,102 ---- FEAT_SETHOST_USER, FEAT_SETHOST_AUTO, + FEAT_WHOIS_SERVICES, /* features that affect global opers on this server */ Index: numeric.h =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/include/numeric.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** numeric.h 11 Oct 2003 13:59:19 -0000 1.2 --- numeric.h 26 Oct 2003 16:56:26 -0000 1.3 *************** *** 218,222 **** /* RPL_WHOISSVCMSG 310 Dalnet */ /* RPL_WHOISHELPOP 310 unreal */ ! /* RPL_WHOISSERVICE 310 austnet */ #define RPL_WHOISUSER 311 /* See also RPL_ENDOFWHOIS */ #define RPL_WHOISSERVER 312 --- 218,222 ---- /* RPL_WHOISSVCMSG 310 Dalnet */ /* RPL_WHOISHELPOP 310 unreal */ ! #define RPL_WHOISSERVICE 310 /* austnet / Undernet extension */ #define RPL_WHOISUSER 311 /* See also RPL_ENDOFWHOIS */ #define RPL_WHOISSERVER 312 |
From: <dia...@us...> - 2003-10-26 16:57:13
|
Update of /cvsroot/genericircd/gircd2.0/ircd In directory sc8-pr-cvs1:/tmp/cvs-serv30501/ircd Modified Files: gline.c ircd_features.c m_nick.c m_whois.c s_err.c s_user.c whocmds.c Log Message: Added WHOIS SERVICES and hopefully fixed the G-Line bug. Index: gline.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/gline.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gline.c 11 Oct 2003 13:59:19 -0000 1.2 --- gline.c 26 Oct 2003 16:56:26 -0000 1.3 *************** *** 70,107 **** struct Gline* BadChanGlineList = 0; - /* - * - ASUKA --------------------------------------------------------------------- - * Implement nick glines. sickening :) - * - * froo (fr...@qu...) - 2002/08/21 - * ----------------------------------------------------------------------------- - */ - static void ! canon_userhost(char *userhost, char **nick_p, char **user_p, char **host_p, char *def_user) { ! char *tmp, *s; ! ! if ((tmp = strchr(userhost, '!'))) { ! *nick_p = userhost; ! *(tmp++) = '\0'; ! } else { ! *nick_p = def_user; ! tmp = userhost; ! } ! if (!(s = strchr(tmp, '@'))) { *user_p = def_user; ! *host_p = tmp; } else { ! *user_p = tmp; ! *(s++) = '\0'; ! *host_p = s; } } static struct Gline * ! make_gline(char *nick, char *user, char *host, char *reason, time_t expire, ! time_t lastmod, unsigned int flags) { struct Gline *gline, *sgline, *after = 0; --- 70,91 ---- struct Gline* BadChanGlineList = 0; static void ! canon_userhost(char *userhost, char **user_p, char **host_p, char *def_user) { ! char *tmp; ! if (!(tmp = strchr(userhost, '@'))) { *user_p = def_user; ! *host_p = userhost; } else { ! *user_p = userhost; ! *(tmp++) = '\0'; ! *host_p = tmp; } } static struct Gline * ! make_gline(char *user, char *host, char *reason, time_t expire, time_t lastmod, ! unsigned int flags) { struct Gline *gline, *sgline, *after = 0; *************** *** 116,121 **** else if ((gline->gl_flags & GLINE_LOCAL) != (flags & GLINE_LOCAL)) continue; ! else if (!mmatch(gline->gl_nick, nick) && /* gline contains new mask */ ! !mmatch(gline->gl_user, user) && !mmatch(gline->gl_host, host)) { if (expire <= gline->gl_expire) /* will expire before wider gline */ --- 100,104 ---- else if ((gline->gl_flags & GLINE_LOCAL) != (flags & GLINE_LOCAL)) continue; ! else if (!mmatch(gline->gl_user, user) && /* gline contains new mask */ !mmatch(gline->gl_host, host)) { if (expire <= gline->gl_expire) /* will expire before wider gline */ *************** *** 123,128 **** else after = gline; /* stick new gline after this one */ ! } else if (!mmatch(nick, gline->gl_nick) && /* new mask contains gline */ ! !mmatch(user, gline->gl_user) && !mmatch(host, gline->gl_host) && gline->gl_expire <= expire) /* gline expires before new one */ --- 106,110 ---- else after = gline; /* stick new gline after this one */ ! } else if (!mmatch(user, gline->gl_user) && /* new mask contains gline */ !mmatch(host, gline->gl_host) && gline->gl_expire <= expire) /* gline expires before new one */ *************** *** 141,145 **** if (flags & GLINE_BADCHAN) { /* set a BADCHAN gline */ DupString(gline->gl_user, user); /* first, remember channel */ - gline->gl_nick = 0; gline->gl_host = 0; --- 123,126 ---- *************** *** 152,157 **** } else { ! DupString(gline->gl_nick, nick); /* remember them... */ ! DupString(gline->gl_user, user); DupString(gline->gl_host, host); --- 133,137 ---- } else { ! DupString(gline->gl_user, user); /* remember them... */ DupString(gline->gl_host, host); *************** *** 271,278 **** continue; - if (cli_name(acptr) && - match (gline->gl_nick, cli_name(acptr)) != 0) - continue; - if (cli_user(acptr)->username && match (gline->gl_user, (cli_user(acptr))->realusername) != 0) --- 251,254 ---- *************** *** 377,385 **** if (gline->gl_lastmod) ! sendcmdto_serv_butone(sptr, CMD_GLINE, cptr, "* %c%s%s%s%s%s %Tu %Tu :%s", ! GlineIsRemActive(gline) ? '+' : '-', ! GlineIsBadChan(gline) ? "" : gline->gl_nick, ! GlineIsBadChan(gline) ? "" : "!", ! gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, --- 353,358 ---- if (gline->gl_lastmod) ! sendcmdto_serv_butone(sptr, CMD_GLINE, cptr, "* %c%s%s%s %Tu %Tu :%s", ! GlineIsRemActive(gline) ? '+' : '-', gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, *************** *** 389,395 **** sendcmdto_serv_butone(sptr, CMD_GLINE, cptr, (GlineIsRemActive(gline) ? ! "* +%s%s%s%s%s %Tu :%s" : "* -%s%s%s%s%s"), ! GlineIsBadChan(gline) ? "" : gline->gl_nick, ! GlineIsBadChan(gline) ? "" : "!", gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, --- 362,366 ---- sendcmdto_serv_butone(sptr, CMD_GLINE, cptr, (GlineIsRemActive(gline) ? ! "* +%s%s%s %Tu :%s" : "* -%s%s%s"), gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, *************** *** 404,409 **** { struct Gline *agline; ! char uhmask[NICKLEN + USERLEN + HOSTLEN + 3]; ! char *nick, *user, *host; int tmp; --- 375,380 ---- { struct Gline *agline; ! char uhmask[USERLEN + HOSTLEN + 2]; ! char *user, *host; int tmp; *************** *** 429,435 **** host = 0; } else { ! canon_userhost(userhost, &nick, &user, &host, "*"); if (sizeof(uhmask) < ! ircd_snprintf(0, uhmask, sizeof(uhmask), "%s!%s@%s", nick, user, host)) return send_reply(sptr, ERR_LONGMASK); else if (MyUser(sptr) || (IsUser(sptr) && flags & GLINE_LOCAL)) { --- 400,406 ---- host = 0; } else { ! canon_userhost(userhost, &user, &host, "*"); if (sizeof(uhmask) < ! ircd_snprintf(0, uhmask, sizeof(uhmask), "%s@%s", user, host)) return send_reply(sptr, ERR_LONGMASK); else if (MyUser(sptr) || (IsUser(sptr) && flags & GLINE_LOCAL)) { *************** *** 464,476 **** /* Inform ops... */ sendto_opmask_butone(0, ircd_strncmp(reason, "AUTO", 4) ? SNO_GLINE : ! SNO_AUTO, "%s adding %s %s for %s%s%s%s%s, expiring at " "%Tu: %s", feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr) ? cli_name(sptr) : cli_name((cli_user(sptr))->server), flags & GLINE_LOCAL ? "local" : "global", ! flags & GLINE_BADCHAN ? "BADCHAN" : "GLINE", ! flags & GLINE_BADCHAN ? "" : nick, ! flags & GLINE_BADCHAN ? "" : "!", ! user, flags & GLINE_BADCHAN ? "" : "@", flags & GLINE_BADCHAN ? "" : host, --- 435,444 ---- /* Inform ops... */ sendto_opmask_butone(0, ircd_strncmp(reason, "AUTO", 4) ? SNO_GLINE : ! SNO_AUTO, "%s adding %s %s for %s%s%s, expiring at " "%Tu: %s", feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr) ? cli_name(sptr) : cli_name((cli_user(sptr))->server), flags & GLINE_LOCAL ? "local" : "global", ! flags & GLINE_BADCHAN ? "BADCHAN" : "GLINE", user, flags & GLINE_BADCHAN ? "" : "@", flags & GLINE_BADCHAN ? "" : host, *************** *** 479,492 **** /* and log it */ log_write(LS_GLINE, L_INFO, LOG_NOSNOTICE, ! "%#C adding %s %s for %s%s%s, expiring at %Tu: %s", sptr, flags & GLINE_LOCAL ? "local" : "global", ! flags & GLINE_BADCHAN ? "BADCHAN" : "GLINE", ! flags & GLINE_BADCHAN ? "" : nick, ! flags & GLINE_BADCHAN ? "" : "!", ! userhost, expire + TSoffset, reason); /* make the gline */ ! agline = make_gline(nick, user, host, reason, expire, lastmod, flags); if (!agline) /* if it overlapped, silently return */ --- 447,457 ---- /* and log it */ log_write(LS_GLINE, L_INFO, LOG_NOSNOTICE, ! "%#C adding %s %s for %s, expiring at %Tu: %s", sptr, flags & GLINE_LOCAL ? "local" : "global", ! flags & GLINE_BADCHAN ? "BADCHAN" : "GLINE", userhost, expire + TSoffset, reason); /* make the gline */ ! agline = make_gline(user, host, reason, expire, lastmod, flags); if (!agline) /* if it overlapped, silently return */ *************** *** 525,535 **** /* Inform ops and log it */ ! sendto_opmask_butone(0, SNO_GLINE, "%s activating global %s for %s%s%s%s%s, " "expiring at %Tu: %s", feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr) ? cli_name(sptr) : cli_name((cli_user(sptr))->server), GlineIsBadChan(gline) ? "BADCHAN" : "GLINE", - GlineIsBadChan(gline) ? "" : gline->gl_nick, - GlineIsBadChan(gline) ? "" : "!", gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, --- 490,498 ---- /* Inform ops and log it */ ! sendto_opmask_butone(0, SNO_GLINE, "%s activating global %s for %s%s%s, " "expiring at %Tu: %s", feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr) ? cli_name(sptr) : cli_name((cli_user(sptr))->server), GlineIsBadChan(gline) ? "BADCHAN" : "GLINE", gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, *************** *** 537,545 **** log_write(LS_GLINE, L_INFO, LOG_NOSNOTICE, ! "%#C activating global %s for %s%s%s%s%s, expiring at %Tu: %s", sptr, ! GlineIsBadChan(gline) ? "BADCHAN" : "GLINE", ! GlineIsBadChan(gline) ? "" : gline->gl_nick, ! GlineIsBadChan(gline) ? "" : "!", ! gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, --- 500,505 ---- log_write(LS_GLINE, L_INFO, LOG_NOSNOTICE, ! "%#C activating global %s for %s%s%s, expiring at %Tu: %s", sptr, ! GlineIsBadChan(gline) ? "BADCHAN" : "GLINE", gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, *************** *** 589,599 **** /* Inform ops and log it */ ! sendto_opmask_butone(0, SNO_GLINE, "%s %s %s for %s%s%s%s%s, expiring at %Tu: " "%s", feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr) ? cli_name(sptr) : cli_name((cli_user(sptr))->server), msg, GlineIsBadChan(gline) ? "BADCHAN" : "GLINE", - GlineIsBadChan(gline) ? "" : gline->gl_nick, - GlineIsBadChan(gline) ? "" : "!", gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, --- 549,557 ---- /* Inform ops and log it */ ! sendto_opmask_butone(0, SNO_GLINE, "%s %s %s for %s%s%s, expiring at %Tu: " "%s", feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr) ? cli_name(sptr) : cli_name((cli_user(sptr))->server), msg, GlineIsBadChan(gline) ? "BADCHAN" : "GLINE", gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, *************** *** 601,609 **** log_write(LS_GLINE, L_INFO, LOG_NOSNOTICE, ! "%#C %s %s for %s%s%s%s%s, expiring at %Tu: %s", sptr, msg, ! GlineIsBadChan(gline) ? "BADCHAN" : "GLINE", ! GlineIsBadChan(gline) ? "" : gline->gl_nick, ! GlineIsBadChan(gline) ? "" : "!", ! gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, --- 559,564 ---- log_write(LS_GLINE, L_INFO, LOG_NOSNOTICE, ! "%#C %s %s for %s%s%s, expiring at %Tu: %s", sptr, msg, ! GlineIsBadChan(gline) ? "BADCHAN" : "GLINE", gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, *************** *** 625,629 **** struct Gline *gline; struct Gline *sgline; ! char *nick, *user, *host, *t_uh; if (flags & (GLINE_BADCHAN | GLINE_ANY)) { --- 580,584 ---- struct Gline *gline; struct Gline *sgline; ! char *user, *host, *t_uh; if (flags & (GLINE_BADCHAN | GLINE_ANY)) { *************** *** 651,655 **** DupString(t_uh, userhost); ! canon_userhost(t_uh, &nick, &user, &host, 0); if(BadPtr(user)) --- 606,610 ---- DupString(t_uh, userhost); ! canon_userhost(t_uh, &user, &host, 0); if(BadPtr(user)) *************** *** 666,680 **** else if (flags & GLINE_EXACT) { if (ircd_strcmp(gline->gl_host, host) == 0 && ! ((!user && ircd_strcmp(gline->gl_user, "*") == 0) || ! (user && ircd_strcmp(gline->gl_user, user) == 0)) && ! ((!nick && ircd_strcmp(gline->gl_nick, "*") == 0) || ! (nick && ircd_strcmp(gline->gl_nick, nick) == 0))) break; } else { if (match(gline->gl_host, host) == 0 && ! ((!user && ircd_strcmp(gline->gl_user, "*") == 0) || ! (user && match(gline->gl_user, user) == 0)) && ! ((!nick && ircd_strcmp(gline->gl_nick, "*") == 0) || ! (nick && (match(gline->gl_nick, nick) == 0)))) break; } --- 621,631 ---- else if (flags & GLINE_EXACT) { if (ircd_strcmp(gline->gl_host, host) == 0 && ! ((!user && ircd_strcmp(gline->gl_user, "*") == 0) || ! ircd_strcmp(gline->gl_user, user) == 0)) break; } else { if (match(gline->gl_host, host) == 0 && ! ((!user && ircd_strcmp(gline->gl_user, "*") == 0) || ! match(gline->gl_user, user) == 0)) break; } *************** *** 704,710 **** continue; - if (match(gline->gl_nick, cli_name(cptr)) != 0) - continue; - if (match(gline->gl_user, (cli_user(cptr))->realusername) != 0) continue; --- 655,658 ---- *************** *** 736,741 **** gline->gl_next->gl_prev_p = gline->gl_prev_p; - if (gline->gl_nick) - MyFree(gline->gl_nick); MyFree(gline->gl_user); /* free up the memory */ if (gline->gl_host) --- 684,687 ---- *************** *** 757,762 **** gline_free(gline); else if (!GlineIsLocal(gline) && gline->gl_lastmod) ! sendcmdto_one(&me, CMD_GLINE, cptr, "* %c%s!%s@%s %Tu %Tu :%s", ! GlineIsRemActive(gline) ? '+' : '-', gline->gl_nick, gline->gl_user, gline->gl_host, gline->gl_expire - CurrentTime, gline->gl_lastmod, gline->gl_reason); --- 703,708 ---- gline_free(gline); else if (!GlineIsLocal(gline) && gline->gl_lastmod) ! sendcmdto_one(&me, CMD_GLINE, cptr, "* %c%s@%s %Tu %Tu :%s", ! GlineIsRemActive(gline) ? '+' : '-', gline->gl_user, gline->gl_host, gline->gl_expire - CurrentTime, gline->gl_lastmod, gline->gl_reason); *************** *** 782,790 **** return 0; ! sendcmdto_one(&me, CMD_GLINE, cptr, "* %c%s%s%s%s%s %Tu %Tu :%s", ! GlineIsRemActive(gline) ? '+' : '-', ! GlineIsBadChan(gline) ? "" : gline->gl_nick, ! GlineIsBadChan(gline) ? "" : "!", ! gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, gline->gl_expire - CurrentTime, gline->gl_lastmod, --- 728,734 ---- return 0; ! sendcmdto_one(&me, CMD_GLINE, cptr, "* %c%s%s%s %Tu %Tu :%s", ! GlineIsRemActive(gline) ? '+' : '-', gline->gl_user, ! GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, gline->gl_expire - CurrentTime, gline->gl_lastmod, *************** *** 805,812 **** /* send gline information along */ ! send_reply(sptr, RPL_GLIST, ! GlineIsBadChan(gline) ? "" : gline->gl_nick, ! GlineIsBadChan(gline) ? "" : "!", ! gline->gl_user, GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, gline->gl_expire + TSoffset, --- 749,754 ---- /* send gline information along */ ! send_reply(sptr, RPL_GLIST, gline->gl_user, ! GlineIsBadChan(gline) ? "" : "@", GlineIsBadChan(gline) ? "" : gline->gl_host, gline->gl_expire + TSoffset, *************** *** 820,825 **** gline_free(gline); else ! send_reply(sptr, RPL_GLIST, gline->gl_nick, "!", gline->gl_user, "@", ! gline->gl_host, gline->gl_expire + TSoffset, GlineIsLocal(gline) ? cli_name(&me) : "*", GlineIsActive(gline) ? '+' : '-', gline->gl_reason); --- 762,767 ---- gline_free(gline); else ! send_reply(sptr, RPL_GLIST, gline->gl_user, "@", gline->gl_host, ! gline->gl_expire + TSoffset, GlineIsLocal(gline) ? cli_name(&me) : "*", GlineIsActive(gline) ? '+' : '-', gline->gl_reason); *************** *** 832,836 **** gline_free(gline); else ! send_reply(sptr, RPL_GLIST, "", "", gline->gl_user, "", "", gline->gl_expire + TSoffset, GlineIsLocal(gline) ? cli_name(&me) : "*", --- 774,778 ---- gline_free(gline); else ! send_reply(sptr, RPL_GLIST, gline->gl_user, "", "", gline->gl_expire + TSoffset, GlineIsLocal(gline) ? cli_name(&me) : "*", *************** *** 855,859 **** gline_free(gline); else ! send_reply(sptr, RPL_STATSGLINE, 'G', gline->gl_nick, "!", gline->gl_user, gline->gl_host, gline->gl_expire + TSoffset, gline->gl_reason); } --- 797,801 ---- gline_free(gline); else ! send_reply(sptr, RPL_STATSGLINE, 'G', gline->gl_user, gline->gl_host, gline->gl_expire + TSoffset, gline->gl_reason); } *************** *** 869,873 **** gl++; gl_size += sizeof(struct Gline); - gl_size += gline->gl_nick ? (strlen(gline->gl_nick) + 1) : 0; gl_size += gline->gl_user ? (strlen(gline->gl_user) + 1) : 0; gl_size += gline->gl_host ? (strlen(gline->gl_host) + 1) : 0; --- 811,814 ---- *************** *** 875,917 **** } return gl; - } - - struct Gline * - IsNickGlined(struct Client *cptr, char *nick) - { - struct Gline *gline; - struct Gline *sgline; - - for (gline = GlobalGlineList; gline; gline = sgline) { - sgline = gline->gl_next; - - if (gline->gl_expire <= CurrentTime) { - gline_free(gline); - continue; - } - - if (!ircd_strcmp(gline->gl_nick, "*")) /* skip glines w. wildcarded nick */ - continue; - - if (match(gline->gl_nick, nick) != 0) - continue; - - if (match(gline->gl_user, (cli_user(cptr))->username) != 0) - continue; - - if (GlineIsIpMask(gline)) { - Debug((DEBUG_DEBUG,"IP gline: %08x %08x/%i",(cli_ip(cptr)).s_addr,gline->ipnum.s_addr,gline->bits)); - if (((cli_ip(cptr)).s_addr & NETMASK(gline->bits)) != gline->ipnum.s_addr) - continue; - } - else { - if (match(gline->gl_host, (cli_user(cptr))->realhost) != 0) - continue; - } - return gline; - } - /* - * No Glines matched - */ - return 0; } --- 816,818 ---- Index: ircd_features.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/ircd_features.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ircd_features.c 25 Oct 2003 20:30:24 -0000 1.3 --- ircd_features.c 26 Oct 2003 16:56:26 -0000 1.4 *************** *** 260,263 **** --- 260,264 ---- F_B(USERCLOAK, 0, 1, 0), F_S(USER_CLOAK_HOST, FEAT_CASE, "cloak.genericnet.org", 0), + F_B(WHOIS_SERVICES, 0, 0, 0), /* features that probably should not be touched */ Index: m_nick.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/m_nick.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** m_nick.c 12 Jul 2003 20:08:40 -0000 1.1.1.1 --- m_nick.c 26 Oct 2003 16:56:26 -0000 1.2 *************** *** 97,101 **** #include "s_user.h" #include "send.h" - #include "gline.h" #include <assert.h> --- 97,100 ---- *************** *** 179,194 **** if (0 == do_nick_name(nick)) { send_reply(sptr, ERR_ERRONEUSNICKNAME, arg); - return 0; - } - - /* - * - ASUKA --------------------------------------------------------------------- - * Check, if there's an active nick gline matching the new nick. - * - * froo (fr...@qu...) - 2002/08/21 - * ----------------------------------------------------------------------------- - */ - if (IsRegistered(sptr) && !IsAnOper(sptr) && IsNickGlined(sptr, nick)) { - send_reply(sptr, ERR_ERRONEUSNICKNAME, nick); return 0; } --- 178,181 ---- Index: m_whois.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/m_whois.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** m_whois.c 12 Jul 2003 20:08:47 -0000 1.1.1.1 --- m_whois.c 26 Oct 2003 16:56:26 -0000 1.2 *************** *** 218,221 **** --- 218,224 ---- * probably a good place to add them :) */ + + if (IsChannelService(acptr) && feature_bool(FEAT_WHOIS_SERVICES)) + send_reply(sptr, RPL_WHOISSERVICE, name); if (MyConnect(acptr) && Index: s_err.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/s_err.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** s_err.c 11 Oct 2003 13:59:19 -0000 1.2 --- s_err.c 26 Oct 2003 16:56:26 -0000 1.3 *************** *** 527,531 **** { RPL_STATSTLINE, "%c %s %s", "246" }, /* 247 */ ! { RPL_STATSGLINE, "%c %s%s%s@%s %Tu :%s", "247" }, /* 248 */ { RPL_STATSULINE, "%c %s %s %s %d %d", "248" }, --- 527,531 ---- { RPL_STATSTLINE, "%c %s %s", "246" }, /* 247 */ ! { RPL_STATSGLINE, "%c %s@%s %Tu :%s", "247" }, /* 248 */ { RPL_STATSULINE, "%c %s %s %s %d %d", "248" }, *************** *** 593,597 **** { 0 }, /* 280 */ ! { RPL_GLIST, "%s%s%s%s%s %Tu %s %c :%s", "280" }, /* 281 */ { RPL_ENDOFGLIST, ":End of G-line List", "281" }, --- 593,597 ---- { 0 }, /* 280 */ ! { RPL_GLIST, "%s%s%s %Tu %s %c :%s", "280" }, /* 281 */ { RPL_ENDOFGLIST, ":End of G-line List", "281" }, *************** *** 653,657 **** { 0 }, /* 310 */ ! { 0 }, /* 311 */ { RPL_WHOISUSER, "%s %s %s * :%s", "311" }, --- 653,657 ---- { 0 }, /* 310 */ ! { RPL_WHOISSERVICE, "%s :is a Network Service", "310" }, /* 311 */ { RPL_WHOISUSER, "%s %s %s * :%s", "311" }, Index: s_user.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/s_user.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** s_user.c 25 Oct 2003 20:30:24 -0000 1.3 --- s_user.c 26 Oct 2003 16:56:26 -0000 1.4 *************** *** 366,370 **** struct User* user = cli_user(sptr); char ip_base64[8]; - int killreason; user->last = CurrentTime; --- 366,369 ---- *************** *** 448,455 **** * following block for the benefit of time-dependent K:-lines */ ! if ((killreason=find_kill(sptr))) { ServerStats->is_ref++; IPcheck_connect_fail(cli_ip(sptr)); ! return exit_client(cptr, sptr, &me, (killreason==-2) ? "G-lined" : "K-lined"); } /* --- 447,454 ---- * following block for the benefit of time-dependent K:-lines */ ! if (find_kill(sptr)) { ServerStats->is_ref++; IPcheck_connect_fail(cli_ip(sptr)); ! return exit_client(cptr, sptr, &me, "K-lined"); } /* Index: whocmds.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/whocmds.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** whocmds.c 12 Jul 2003 20:09:01 -0000 1.1.1.1 --- whocmds.c 26 Oct 2003 16:56:26 -0000 1.2 *************** *** 258,262 **** struct Client *acptr; int count = 0; ! char namebuf[NICKLEN + USERLEN + HOSTLEN + 3]; char ipbuf[USERLEN + 16 + 2]; --- 258,262 ---- struct Client *acptr; int count = 0; ! char namebuf[USERLEN + HOSTLEN + 2]; char ipbuf[USERLEN + 16 + 2]; *************** *** 265,272 **** continue; ! ircd_snprintf(0, namebuf, sizeof(namebuf), "%s!%s@%s", cli_name(acptr), cli_user(acptr)->username, cli_user(acptr)->host); ! ircd_snprintf(0, ipbuf, sizeof(ipbuf), "%s!%s@%s", cli_name(acptr), ! cli_user(acptr)->username, ircd_ntoa((const char *) &(cli_ip(acptr)))); if (!match(mask, namebuf) || !match(mask, ipbuf)) --- 265,272 ---- continue; ! ircd_snprintf(0, namebuf, sizeof(namebuf), "%s@%s", cli_user(acptr)->username, cli_user(acptr)->host); ! ircd_snprintf(0, ipbuf, sizeof(ipbuf), "%s@%s", cli_user(acptr)->username, ! ircd_ntoa((const char *) &(cli_ip(acptr)))); if (!match(mask, namebuf) || !match(mask, ipbuf)) |
From: <dia...@us...> - 2003-10-25 23:44:51
|
Update of /cvsroot/genericircd/gircd2.0/doc In directory sc8-pr-cvs1:/tmp/cvs-serv30709/doc Added Files: CREDITS ircd.conf motd.templ remote.motd Removed Files: exaconf.2 ircd.conf.sample Log Message: Added/removed some files, everything should be right now ... --- NEW FILE: CREDITS --- Credits goes to the following: StoneC0ld Ishtar Puma Diaboliq Undernet For the ircu base code. Quakenet For some really lovely patches --- NEW FILE: ircd.conf --- # GenericNet ircd.conf # M:Line # Talk to a Routing-Com admin/rep to have a numeric assigned. M:city.state/prov.country.GenericNet.Org:IP (Or *):Server description:port:numeric # A:Line (Change this as ) A:GenericNet IRC Server:Server Administrator:Nickname <em...@ad...> # Y:Lines (DO NOT TOUCH, UNLESS ADDING NEW LINES) Y:90:90:60:1:1700000 Y:80:90:60:10:1700000 Y:70:90:300:1:1700000 Y:50:90:300:10:1700000 Y:15:90:0:100:160000 Y:10:90:0:100:160000 Y:2:90:0:5:80000 Y:1:90:0:400:160000 # I:Lines (EDIT AT YOUR OWN RISK) I:*@*::Unresolved::1 I:Resolved::*@*::1 # U:Line (DO NOT TOUCH!!) U:Channels.GenericNet.Org:X,Y,G,GenericNet,prox,pass,newpass,CMaster,W,ChanSvr,ChanSaver,ChanServ,COM1,COM2,COM3,COM4,E,U,protocol,StatServ,NoteServ,NickSvr,NickSaver,NickServ,LPT1,LPT2,AUX,LOGIN:* U:UWorld.GenericNet.Org:UWorld,EUWorld,GStats,UWorld2:* U:GWorld.GenericNet.Org:GWorld:* # K:Lines (Add any Kill Lines for Bad Users/Bots here) K:*sub7*:"You are infected with a Trojan":*sub7* # C: lines will be sent to you when you link. (To protect ourselves from # non-linked servers autoconnecting) # H:Lines (DO NOT TOUCH) H:*:*:Channels.GenericNet.Org H:*:*:UWorld.GenericNet.Org H:*:*:cyclebot.GenericNet.Org H:*:*:ProxyScan.GenericNet.Org H:*:*:Montreal.QC.CA.GenericNet.Org H:*:*:Phoenix.AZ.US.GenericNet.Org H:*:*:EU1.HUB.GenericNet.Org H:*:*:Botosani.RO.EU.GenericNet.Org # O:Lines (Add yourself an O:line here. To crypt your pass read tools/README for more info) # *DO NOT* remove the following O: line as it is needed in case your # server as linking problems. O:*lol@*.mtl.mc.videotron.ca:vaKr0HhVmbTH2:Ishtar::10 # Add/edit your O:lines below.... # P:Lines P:*:*:SH:4400 P:*:*:CH:6661 P:*:*:CH:6662 P:*:*:CH:6663 P:*:*:CH:6664 P:*:*:CH:6665 P:*:*:CH:6666 P:*:*:CH:6667 P:*:*:CH:6668 P:*:*:CH:6669 P:*:*:CH:7000 # F:Lines (ONLY EDIT THE FIRST LINE) F:RANDOM_SEED:25413652 # DO NOT EDIT THE REST OF THESE! F:OPER_WALK_THROUGH_LMODES:TRUE F:RELIABLE_CLOCK:FALSE F:HOST_HIDING:TRUE F:HIDDEN_HOST:Users.GenericNet.Org F:VIRTUAL_HOST:TRUE F:MAXCHANNELSPERUSER:15 F:HIS_SERVERNAME:*.GenericNet.Org F:HIS_SERVERINFO:The GenericNet GenericWorld F:HIS_URLSERVERS:"http://www.genericnet.org/servers.html" F:HIS_STATS_g:FALSE F:HIS_STATS_k:FALSE F:HIS_STATS_u:FALSE F:HIS_WHOIS_IDLETIME:FALSE F:HIS_KILLWHO:FALSE F:TOPIC_BURST:TRUE F:SETHOST_FREEFORM:TRUE F:SETHOST_AUTO:TRUE F:SETHOST_USER:TRUE F:SETHOST:TRUE F:NETWORK:GenericNet F:HIS_GLINE:FALSE --- NEW FILE: motd.templ --- -------------------------------------------------- The rules for this server: * You are allowed two (2) connections *MAXIMUM*. No cloning is permitted. * *Friendly* bots are allowed. Abusive or war bots will be banned. * No flooding, nuking, DoS or any similar abuse. * Do have fun :-) --------------------------------------------------- NOTE: IRC is an un-moderated medium. The GenericNet staff is not responsible for the traffic that crosses over this network. As such, IRC may not be suitable for all ages. We recommend parental supervision for young IRC'ers. --------------------------------------------------- Our Official Channels are: #CService --- For help with X #Help --- For general IRC help #zT --- For all your IRCOP needs #GenericNet --- Our general chat channel --------------------------------------------------- Have a fun IRC time! The GenericNet Staff. --- NEW FILE: remote.motd --- This server is (enter your server name here) For a complete MOTD, hop on it and type: /motd --- exaconf.2 DELETED --- --- ircd.conf.sample DELETED --- |
From: <dia...@us...> - 2003-10-25 20:38:39
|
Update of /cvsroot/genericircd/gircd2.0 In directory sc8-pr-cvs1:/tmp/cvs-serv15256 Modified Files: installer Log Message: Added USER CLOAK Feature. Index: installer =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/installer,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** installer 20 Oct 2003 09:27:41 -0000 1.7 --- installer 25 Oct 2003 20:30:23 -0000 1.8 *************** *** 438,441 **** --- 438,443 ---- echo F:SETHOST:TRUE >> $INSTALLDIR/ircd.conf echo F:HIS_GLINE:FALSE >> $INSTALLDIR/ircd.conf + echo F:USERCLOAK:TRUE >> $INSTALLDIR/ircd.conf + echo F:USER_CLOAK_HOST:cloak.genericnet.org >> $INSTALLDIR/ircd.conf echo echo ircd.conf created! |
From: <dia...@us...> - 2003-10-25 20:34:49
|
Update of /cvsroot/genericircd/gircd2.0/include In directory sc8-pr-cvs1:/tmp/cvs-serv15256/include Modified Files: ircd_features.h Log Message: Added USER CLOAK Feature. Index: ircd_features.h =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/include/ircd_features.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ircd_features.h 12 Jul 2003 20:08:14 -0000 1.1.1.1 --- ircd_features.h 25 Oct 2003 20:30:24 -0000 1.2 *************** *** 51,55 **** FEAT_CONNEXIT_NOTICES, FEAT_TOPIC_BURST, ! /* features that probably should not be touched */ FEAT_KILLCHASETIMELIMIT, --- 51,57 ---- FEAT_CONNEXIT_NOTICES, FEAT_TOPIC_BURST, ! FEAT_USERCLOAK, ! FEAT_USER_CLOAK_HOST, ! /* features that probably should not be touched */ FEAT_KILLCHASETIMELIMIT, |
From: <dia...@us...> - 2003-10-25 20:34:46
|
Update of /cvsroot/genericircd/gircd2.0/ircd In directory sc8-pr-cvs1:/tmp/cvs-serv15256/ircd Modified Files: ircd_features.c s_user.c Log Message: Added USER CLOAK Feature. Index: ircd_features.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/ircd_features.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ircd_features.c 11 Oct 2003 13:59:19 -0000 1.2 --- ircd_features.c 25 Oct 2003 20:30:24 -0000 1.3 *************** *** 258,261 **** --- 258,263 ---- F_B(CONNEXIT_NOTICES, 0, 0, 0), F_B(TOPIC_BURST, 0, 0, 0), + F_B(USERCLOAK, 0, 1, 0), + F_S(USER_CLOAK_HOST, FEAT_CASE, "cloak.genericnet.org", 0), /* features that probably should not be touched */ Index: s_user.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/s_user.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** s_user.c 15 Oct 2003 11:55:04 -0000 1.2 --- s_user.c 25 Oct 2003 20:30:24 -0000 1.3 *************** *** 733,736 **** --- 733,751 ---- ircd_strncpy(cli_user(new_client)->host, host, HOSTLEN); } + if (!account && HasHiddenHost(new_client)) { + char *ip_to_hide; + ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(new_client))); + char *cloaked_host; + cloaked_host = crypt(ip_to_hide, "AA"); + int cuc=0; + while ( cloaked_host[cuc] ) { + if ((int)cloaked_host[cuc] == '/') cloaked_host[cuc]=(char)'G'; + if ((int)cloaked_host[cuc] == '.') cloaked_host[cuc]=(char)'G'; + cuc++; + } + cloaked_host+=6; + ircd_snprintf(0, cli_user(new_client)->host, HOSTLEN, "user-%s.%s", cloaked_host, feature_str(FEAT_USER_CLOAK_HOST)); + } + } *************** *** 1089,1103 **** } ! if (((flag == FLAG_HIDDENHOST) && !HasFlag(cptr, FLAG_ACCOUNT)) ! || ((flag == FLAG_ACCOUNT) && !HasFlag(cptr, FLAG_HIDDENHOST))) { ! /* The user doesn't have both flags, don't change the hostmask */ SetFlag(cptr, flag); - return 0; } - - sendcmdto_common_channels_butone(cptr, CMD_QUIT, cptr, ":Registered"); - ircd_snprintf(0, cli_user(cptr)->host, HOSTLEN, "%s.%s", - cli_user(cptr)->account, feature_str(FEAT_HIDDEN_HOST)); - SetFlag(cptr, flag); /* ok, the client is now fully hidden, so let them know -- hikari */ --- 1104,1139 ---- } ! /* New code to add the random user cloak when setting +x and user is not logged in @ the channel services - Diaboliq */ ! if (!feature_bool(FEAT_USERCLOAK)) { ! if (((flag == FLAG_HIDDENHOST) && !HasFlag(cptr, FLAG_ACCOUNT)) ! || ((flag == FLAG_ACCOUNT) && !HasFlag(cptr, FLAG_HIDDENHOST))) { ! /* The user doesn't have both flags, don't change the hostmask */ ! SetFlag(cptr, flag); ! return 0; ! } ! } ! /* If the user set +x but has no account insert the random host */ ! if (HasFlag(cptr, FLAG_ACCOUNT)) { ! sendcmdto_common_channels_butone(cptr, CMD_QUIT, cptr, ":Registered"); ! ircd_snprintf(0, cli_user(cptr)->host, HOSTLEN, "%s.%s", ! cli_user(cptr)->account, feature_str(FEAT_HIDDEN_HOST)); ! SetFlag(cptr, flag); ! } ! else { ! sendcmdto_common_channels_butone(cptr, CMD_QUIT, cptr, ":User cloaking in progress..."); ! char *ip_to_hide; ! ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(cptr))); ! char *cloaked_host; ! cloaked_host = crypt(ip_to_hide, "AA"); ! int cuc=0; ! while ( cloaked_host[cuc] ) { ! if ((int)cloaked_host[cuc] == '/') cloaked_host[cuc]=(char)'G'; ! if ((int)cloaked_host[cuc] == '.') cloaked_host[cuc]=(char)'G'; ! cuc++; ! } ! cloaked_host+=6; ! ircd_snprintf(0, cli_user(cptr)->host, HOSTLEN, "user-%s.%s", cloaked_host, feature_str(FEAT_USER_CLOAK_HOST)); SetFlag(cptr, flag); } /* ok, the client is now fully hidden, so let them know -- hikari */ |
From: <dia...@us...> - 2003-10-25 20:34:25
|
Update of /cvsroot/genericircd/gircd2.0/doc In directory sc8-pr-cvs1:/tmp/cvs-serv15256/doc Modified Files: FEATURES.gircd Log Message: Added USER CLOAK Feature. Index: FEATURES.gircd =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/doc/FEATURES.gircd,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FEATURES.gircd 23 Oct 2003 16:27:36 -0000 1.1 --- FEATURES.gircd 25 Oct 2003 20:30:24 -0000 1.2 *************** *** 121,122 **** --- 121,133 ---- This hides the G-Line quit reason ... + + F:USERCLOAK + * Type: boolean + * Default: TRUE + This activates/deactivates the User Cloaking system. If a user sets +x and has no account + set he will get a crypted hostmask. + + F:USER_CLOAK_HOST + * Type: string + * Default: cloak.genericnet.org + The string to be added to the user-encrypted Host. |
From: <dia...@us...> - 2003-10-25 16:49:25
|
Update of /cvsroot/genericircd/gircd2.0/ircd In directory sc8-pr-cvs1:/tmp/cvs-serv13404/ircd Modified Files: m_part.c Log Message: Fixed part #chan,#chan,.... ircu bug with Entrope's patch Index: m_part.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/m_part.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** m_part.c 12 Jul 2003 20:08:41 -0000 1.1.1.1 --- m_part.c 25 Oct 2003 16:42:24 -0000 1.2 *************** *** 149,153 **** joinbuf_join(&parts, chptr, flags); /* part client from channel */ ! } return joinbuf_flush(&parts); /* flush channel parts */ --- 149,154 ---- joinbuf_join(&parts, chptr, flags); /* part client from channel */ ! joinbuf_flush(&parts); ! } return joinbuf_flush(&parts); /* flush channel parts */ |
From: <dia...@us...> - 2003-10-25 02:57:07
|
Update of /cvsroot/genericircd/gircd2.0 In directory sc8-pr-cvs1:/tmp/cvs-serv30709 Added Files: installer.bsd restircd.sh Removed Files: CREDITS ChangeLog FEATURES INSTALL LICENSE Makefile config.h config.status stamp-h Log Message: Added/removed some files, everything should be right now ... --- NEW FILE: installer.bsd --- # Installer for gircd2.0 *BSD ONLY!! # This installer was created for the GenericNet IRCd, and should only be used # for it. It will only work with it, so I suggest you not try it with any # other daemon. If you want to modify it to use it on another IRCd, please # contact us first. # # Script was successfully tested on Gentoo 1.4 # Please email me (dia...@ge...) if you have major problems. # or (is...@ge...) # This software is under GNU General Public License, so the appropriate # license agreements apply. See doc/LICENSE for the full license. # # This script will NOT check for ircd.conf and ircd.motd # You will need to use the templated from the doc dir and edit them. # # GenericNet IRC Network ircd configuration/compilation file. # Created by Ishtar & StoneC0ld # Adapted by Diaboliq to suit 2.0 needs # Last updated 2003-09-13 clear echo echo \ \----------------------------------------------------------- echo \/ Welcome to the GenericNet Configuration\/Compilation Script \\ echo \\ \ \ \ \ \ \ \ \ \ \ \ \ \ Created by StoneC0ld and Ishtar \ \ \ \ \ \ \ \ \ \ \ \ \ \/ echo \ \----------------------------------------------------------- echo echo echo This script is GPL. See doc/LICENSE for full license. echo echo THIS SCRIPT SHOULD BE USED FOR FREEBSD. echo DO NOT USE THE INSTALLER FOR BSD SYSTEMS! echo echo The script will install the ircd in /yourhomedir/ircd echo Edit installer.bsd and change INSTALLDIR= to the dir you want it in. sleep 5 # Change this to the dir you want it installed in. # The default is /yourhomedir/ircd INSTALLDIR=$HOME/ircd # Install the ircd (note that I changed GenericNet.Org to .GenericNet.Org # This is only for statistic purposes, so just ignore it). # Whatever you do, *DO NOT* change the following lines. gmake distclean ./configure --prefix=$INSTALLDIR \ --exec-prefix=$INSTALLDIR \ --with-domain=.GenericNet.Org \ --with-dpath=$INSTALLDIR && gmake && gmake install # Installation complete echo echo And voila, your ircd is now installed. echo You will need to copy ircd.conf and MOTD's from echo the gircd2.0/doc directory to your install directory. echo echo echo Suggestions/comments about this script echo should be sent to StoneC0ld\@GenericNet.Org echo and/or Ishtar\@GenericNet.Org echo -------------------------------------------------------------------------------- echo echo --- NEW FILE: restircd.sh --- ircd_running () { if test -r $pidfile then ircupid=`cat $pidfile` runcnt=`ps x|grep ircd|grep $ircupid|grep -v grep|wc -l` if [ $runcnt == 1 ] then return 0 else return 1 fi else return 1 fi } # Check if the ircu binary exists if ! [ -x $binfile ] then echo "Error: $binfile does not exist or is not the executable" exit 0 fi case "$1" in start) if ! ircd_running then echo -n "Starting ircu ..." $binfile sleep 2 if ! ircd_running then echo " Failed." echo " The ircu server did NOT start for some reason. Please examine your configuration." else echo " Done. (pid $ircupid)" fi else echo "ircu already running at pid $ircupid" fi ;; stop) if ircd_running; then echo -n "Killing ircu daemon (pid $ircupid) with signal 9 (die) ..." kill -9 $ircupid sleep 2 if ircd_running then echo " Failed." echo " The ircu is still running. Possible high load." else echo " Done" fi else echo "ircu not running" fi ;; rehash) if ircd_running; then echo -n "Killing ircu daemon (pid $ircupid) with signal 1 (rehash) ..." kill -1 $ircupid sleep 2 if ! ircd_running then echo " Failed." echo " The ircu crashed on rehash. Please examine your configuration." else echo " Done (pid $ircupid)" fi else echo "ircu not running" fi ;; restart) if ircd_running; then echo -n "Killing ircu daemon (pid $ircupid) with signal 2 (restart) ..." kill -2 $ircupid sleep 2 if ! ircd_running then echo " Failed." echo " The ircu crashed on rehash. Please examine your configuration." else echo " Done (pid $ircupid)" fi else echo -n "Starting ircu ..." $binfile sleep 2 if ! ircd_running then echo " Failed." echo " The ircu server did NOT start for some reason. Please examine your configuration." else echo " Done. (pid $ircupid)" fi fi ;; force-restart) $0 stop $0 start ;; check) if ircd_running; then echo "ircu is running at pid `cat $pidfile`" else echo "ircu is NOT running" rm -f $pidfile fi ;; *) echo "Usage: $0 {start|stop|rehash|restart|force-restart|check}" exit 1 ;; esac exit 0 --- CREDITS DELETED --- --- ChangeLog DELETED --- --- FEATURES DELETED --- --- INSTALL DELETED --- --- LICENSE DELETED --- --- Makefile DELETED --- --- config.h DELETED --- --- config.status DELETED --- --- stamp-h DELETED --- |
From: <dia...@us...> - 2003-10-24 17:37:12
|
Update of /cvsroot/genericircd/gircd2.0 In directory sc8-pr-cvs1:/tmp/cvs-serv12869 Modified Files: installer.bsd Log Message: Fixed typo reported by Ishtar. Index: installer.bsd =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/installer.bsd,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** installer.bsd 23 Oct 2003 16:45:27 -0000 1.1 --- installer.bsd 24 Oct 2003 16:34:41 -0000 1.2 *************** *** 53,57 **** echo echo And voila, your ircd is now installed. ! echo You will need to copy ircd.conf and MOTD's from echo the gircd2.0/doc directory to your install directory. echo --- 53,57 ---- echo echo And voila, your ircd is now installed. ! echo You will need to copy ircd.conf and MOTD\'s from echo the gircd2.0/doc directory to your install directory. echo |
From: <dia...@us...> - 2003-10-24 13:19:40
|
Update of /cvsroot/genericircd/gircd2.0/tools In directory sc8-pr-cvs1:/tmp/cvs-serv30709/tools Added Files: instmkpass instmkpass.c Removed Files: Makefile name.txt olines.txt opers.txt Log Message: Added/removed some files, everything should be right now ... --- NEW FILE: instmkpass --- (This appears to be a binary file; contents omitted.) --- NEW FILE: instmkpass.c --- /* simple password generator by Nelson Minar (mi...@re...) * copyright 1991, all rights reserved. * You can use this code as long as my name stays with it. */ #define _XOPEN_SOURCE #define _XOPEN_VERSION 4 #define _XOPEN_SOURCE_EXTENDED #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <unistd.h> int main(int argc, char *argv[]) { static char saltChars[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789./"; char salt[3]; char * plaintext; srandom(time(0)); /* may not be the BEST salt, but its close */ salt[0] = saltChars[random() % 64]; salt[1] = saltChars[random() % 64]; salt[2] = 0; if ( argc > 0 ) { plaintext = argv[1]; } else { plaintext = getpass("plaintext: "); } printf("%s\n", crypt(plaintext, salt)); return 0; } --- Makefile DELETED --- --- name.txt DELETED --- --- olines.txt DELETED --- --- opers.txt DELETED --- |
From: <dia...@us...> - 2003-10-23 16:34:55
|
Update of /cvsroot/genericircd/gircd2.0/doc In directory sc8-pr-cvs1:/tmp/cvs-serv27968 Added Files: ChangeLog ChangeLog.ircu FEATURES.gircd INSTALL INSTALL.bsd LICENSE README Log Message: Adding some forgotten files --- NEW FILE: ChangeLog --- 2003-10-20 Ishtar <is...@ge...> * Some minor fixes to the installer. * Added a basic *BSD installer. * Added some files which were missing *oops?*. * Moved all documentation to doc/ * Reimplemented the 1.x the mkpasswd/instmkpass style for the installer. 2003-10-11 Dave Coulter <Sto...@Ge...> * Disable /opmode, /clearmode and global /gline's in accordance with current GenericNet policy. Numeric reply ERR_USEUWORLD (525) added for this function. * Added new fix to kick non-opers out of channels being badchanned by oper services. * Server will now send WALLOPS when a non-oper tries to joins a badchan'ed channel * Some minor cosmetic changes to change the default network to GenericNet. #----------------------------------------------------------------------------- 08-07-2003 Initial Import from ircu2.10.11.05 with custom features. Added by Diaboliq #----------------------------------------------------------------------------- --- NEW FILE: ChangeLog.ircu --- 2003-10-11 Dave Coulter <Sto...@Ge...> * Disable /opmode, /clearmode and global /gline's in accordance with current GenericNet policy. Numeric reply ERR_USEUWORLD (525) added for this function. * Added new fix to kick non-opers out of channels being badchanned by oper services. * Server will now send WALLOPS when a non-oper tries to joins a badchan'ed channel * Some minor cosmetic changes to change the default network to GenericNet. #----------------------------------------------------------------------------- 08-07-2003 Initial Import from ircu2.10.11.05 with custom features. Added by Diaboliq #----------------------------------------------------------------------------- 2003-04-15 Alex Badea <va...@p1...> [...6254 lines suppressed...] manipulation functions, and a couple of helper macros 2000-03-24 Thomas Helvey <to...@in...> * numicks.c: convert extended numerics to use original mask version * numnicks.h: "" * s_user.c: 2000-03-23 Thomas Helvey <to...@in...> * Merge in changes from production 2000-03-22 Thomas Helvey <to...@in...> * numicks.c: Tweak to numnick generator to reduce possibility of duplicates. * rfc1459.unet: Add Maniac's documentation for /names 0 * Fix misc. jupe bugs that somehow made it into the tree * Escape /names 0 to mean /names --Maniac * Don't core when server asks for info --Maniac * Add Kev's jupe patch --Bleep * Add Maniacs squit patch --Bleep * Merge in u2_10_10_beta07 changes --Bleep * Merge in u2_10_10_beta06 changes --Bleep * Start ircu2.10.11 development, beta branch u2_10_10 --Bleep --- NEW FILE: FEATURES.gircd --- Added 08.07.2003 by Diaboliq - features ------------------------------------------------------------------ * Oper mode +X Allows opers to: - Join invite only (+i) channels - Join keyed (+k) channels - Join channels if banned - Join full channels - Override user mode +k * Oper mode +k Allows opers to set user mode +k, network service, which prohibits kicks, deops and kills. * Oper mode +n Allows opers to hide the channels they are in. * Oper mode +I Allows opers to hide their idle time. * User mode +R Allows users to only accept privmsg/notice from authed users. * Channel mode +c Prohibits mIRC & ANSI colour codes from being sent to a channel. * Channel mode +C Prohibits CTCPs from being send to a channel. * Channel mode +D 'Auditorium' mode, when set on a channel joins and parts for that channel are squelched for non +v/+o users. A user will be 'invisible' in the channel from other users until they speak or are opped/voiced. Ops can see all users regardless if they are 'invisible' or not. * Channel mode +u Hides your quit and part messages from channels with +u set. If a user is in any +u channel, then their quit message is removed. * Command /check Allows opers to see information about a channel, user or server. Syntax: /check <#channel|nick|nick!user@host|user@host|host|server> * Sethost allows opers (and users w/ passwords) to set their hostname, also known as spoofing. Sethost is configured from the config file via S: lines and several F: lines. Sethost is done through the /sethost command or by setting user mode +h. Available Sethosts are visible by using the /stats s command. Syntax: Oper Sethost: /sethost <new ident> <new hostname> /mode <nick> +h <new ident>@<new hostname> User Sethost: /sethost <new hostname> <password> /mode <nick> +h <new hostname> <password> * Single letter nicks are protected for use by network services only. * Protection from net rider's joining +i/+k channels after a net.join. * Topics can by sent during bursts to keep them synced throughout a network. * Ability to Gline a nick, new format now nick!ident@host * /stats C & H show full details for Opers - configuration file options ------------------------------------------------ S: Sethost Lines Syntax: S:<spoofed host>:<password>:<*.host.cc|a.b.c.*|CIDR>:<ident> Example: S:moo.fish.moo:elitepassword:lame.box.belonging.to.pils:pils This adds the sethost 'moo.fish.moo' that can be activated by a user by using the password 'elitepassword' and will automatically be applied to anyone connecting from 'lame.box.belonging.to.pils' with the ident 'pils'. More Examples: Oper sethost for 'moo.fish.moo' S:moo.fish.moo::: User & Oper sethost for 'moo.fish.moo' S:moo.fish.moo:elitepassword:: Oper sethost for 'moo.fish.moo' with auto on 'ident@*.example.com" S:moo.fish.moo::*.example.com:ident F:SETHOST * Type: boolean * Default: FALSE This enables the /sethost command and user mode +h for opers activating Sethosts. F:SETHOST_USER * Type: boolean * Default: FALSE This enabled the /sethost command and user mode +h for users activating Sethosts with passwords. F:SETHOST_AUTO * Type: boolean * Default: FALSE This enables the automatic application of Sethosts on matching idents and hosts. F:SETHOST_FREEFORM * Type: boolean * Default: FALSE This enables opers to set new hostnames that do not have a corresponding S: line in the configuration file, as long as the hostname supplied is reasonably valid. The usage if this is logged via SNOTICE. F:TOPIC_BURST * Type: boolean * Default: FALSE This selects whether topics are *sent* to other servers during a burst. Note that receiving topics from servers is always enabled. F:HIS_GLINE * Type: boolean * Default: TRUE This hides the G-Line quit reason ... --- NEW FILE: INSTALL --- This is the GenericNet IRC daemon. Based on UnderNet's. For the impatient, the installer will do everything. just run: ./installer For *BSD systems, please read INSTALL.bsd Read down for more detailed instructions. The installation of the IRC daemon (ircd) consists of the following steps: 1) Retrieve the package. 2) cd into the base directory. 3) "./installer" 4) Add a startup/cron script. 1) Retrieve the package. ======================== You already have the package if you are reading this :) But its always available at: http://www.genericnet.org/downloads/ You should *always* try to get the latest CVS version on our SF.net repository. cvs -d:pserver:ano...@cv...:/cvsroot/genericircd login (if prompted for a password, simply press enter) cvs -z3 -d:pserver:ano...@cv...:/cvsroot/genericircd co gircd2.0 (This will download gircd.) cvs update -dP (To update your current gircd to the latest.) 2) cd into the base directory ============================= Make this directory your current directory by typing: cd gircd2.0 3) "./installer" ===================== "./installer" (without the quotes) The installer is an interactive interface to the installation process. This will install your ircd in /your-home-dir/ircd/ If you wish to change that path, run ./installer /the/path/you/want/it/installed/in/ Here is an example: ./installer /home/ishtar/genericnet/ircd The installer will dynamicaly create the ircd.conf file *if it does not exist*. If it does exist, it will simply skip that step, and compile the ircd for you. The installer now checks for an existing ircd.motd. If it exists, the installer exists, if it doesnt exist, it will use the info you provided to it to generate your ircd.motd. Should there be any problems with it, you can run ./motd-maker manually. If the info generated by the installer is not available to the motd maker, it will prompt you for it. Note that the motd maker will cowardly exit if the ircd.motd file exists, so if you want to re-create it, remove your current ircd.motd, and run the script again. 4) Install cron script. ====================== The Script is generated by the installer, which will install it in your ircd install dir. This will make sure your ircd runs at all times, and restart it should it crash or go down for any reason. To install it, cd into your installation directory (/your-home-dir/ircd/ unless you changed it) and type: crontab ircd.cron ----------------------------------------------------------------- *ONLY IF YOU DID NOT USE THE INSTALLER, DO THE FOLLOWING:* NOTE: YOU SHOULD ALWAYS USE THE INSTALLER. ONLY USE THIS METHOD IF EVERYTHING ELSE FAILS To do the installation manually, type the following command all in 1 line: ./configure --prefix=$HOME/ircd --exec-prefix=$HOME/ircd --with-domain=GenericNet.Org --with-dpath=$HOME/ircd && make && make install You then need to cd into the gircd1.0/doc dir (cd gircd1.0/doc) and copy ircd.conf into your $HOME/ircd directory. Finally, cd to the ircd install dir selected for installation, and edit the ircd.conf file. If you need help with that, please contact a Routing Committee member. And voila! Your ircd is now installed and ready to go. --- NEW FILE: INSTALL.bsd --- Since *BSD systems dont seem to like our bash installer script, we're rewritting it in C. Until that is completed, we made a simple *BSD installer, which will basicly just get your ircd in a "ready to run" mode. The BSD installer is so basic, it will not create any of the files the normal installer would. So once the installation is completed, you will need to cd into the gircd2.0/doc dir, copy our ircd.conf template into your installation directory, and edit it. The same can be done for ircd.motd and remote.motd. You can use our templates, or use your own, only for the MOTDs. Anything is fine with us, as long as you have a MOTD. --- NEW FILE: LICENSE --- GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. The General Public License applies to the Free Software Foundation's software and to any other program whose authors commit to using it. You can use it for your programs, too. When we speak of free software, we are referring to freedom, not price. Specifically, the General Public License is designed to make sure that you have the freedom to give away or sell copies of free software, that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of a such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any work containing the Program or a portion of it, either verbatim or with modifications. Each licensee is addressed as "you". 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this General Public License and to the absence of any warranty; and give any other recipients of the Program a copy of this General Public License along with the Program. You may charge a fee for the physical act of transferring a copy. 2. You may modify your copy or copies of the Program or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and b) cause the whole of any work that you distribute or publish, that in whole or in part contains the Program or any part thereof, either with or without modifications, to be licensed at no charge to all third parties under the terms of this General Public License (except that you may choose to grant warranty protection to some or all third parties, at your option). c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the simplest and most usual way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this General Public License. d) You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. Mere aggregation of another independent work with the Program (or its derivative) on a volume of a storage or distribution medium does not bring the other work under the scope of these terms. 3. You may copy and distribute the Program (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: a) accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, b) accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal charge for the cost of distribution) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, c) accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) Source code for a work means the preferred form of the work for making modifications to it. For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs, or for standard header files or definitions files that accompany that operating system. 4. You may not copy, modify, sublicense, distribute or transfer the Program except as expressly provided under this General Public License. Any attempt otherwise to copy, modify, sublicense, distribute or transfer the Program is void, and will automatically terminate your rights to use the Program under this License. However, parties who have received copies, or rights to use copies, from you under this General Public License will not have their licenses terminated so long as such parties remain in full compliance. 5. By copying, distributing or modifying the Program (or any work based on the Program) you indicate your acceptance of this license to do so, and all its terms and conditions. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. 7. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of the license which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the license, you may choose any version ever published by the Free Software Foundation. 8. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to humanity, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) 19yy <name of author> 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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19xx name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (a program to direct compilers to make passes at assemblers) written by James Hacker. <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice That's all there is to it! --- NEW FILE: README --- All installation documentation resides in INSTALL. For information about basic features, read features.txt. For information about advanced features, read readme.features. For information about GenericNet added features, read FEATURES.gircd. |
From: <sto...@us...> - 2003-10-20 19:15:29
|
Update of /cvsroot/genericircd/gircd2.0 In directory sc8-pr-cvs1:/tmp/cvs-serv23925 Modified Files: Makefile.in README installer motd-maker Log Message: fixed minor installer bugs, added BSD installer, added some missing files, and moved all documentation to doc/. Commit on behalf of Ishtar Index: Makefile.in =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/Makefile.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.in 12 Jul 2003 20:07:48 -0000 1.1.1.1 --- Makefile.in 20 Oct 2003 09:27:41 -0000 1.2 *************** *** 58,62 **** root-clean: ! @for i in '*.orig' '.*.orig' '\#*' '*~' '.*~' '*.bak' '.*.bak' core; do\ echo "Removing $$i"; \ REMOVE_FILES="`find . -name "$$i" -print`"; \ --- 58,62 ---- root-clean: ! @for i in '*.orig' '.*.orig' '\#*' '*~' '.*~' '*.bak' '.*.bak' 'name.txt' 'olines.txt' 'opers.txt' 'pwd' 'clean' core; do\ echo "Removing $$i"; \ REMOVE_FILES="`find . -name "$$i" -print`"; \ Index: README =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** README 12 Jul 2003 20:07:48 -0000 1.1.1.1 --- README 20 Oct 2003 09:27:41 -0000 1.2 *************** *** 1 **** ! Read INSTALL for help. --- 1,2 ---- ! Read doc/INSTALL for help on installation. ! All documentation as been moved to doc/ Index: installer =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/installer,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** installer 17 Oct 2003 16:49:10 -0000 1.6 --- installer 20 Oct 2003 09:27:41 -0000 1.7 *************** *** 5,10 **** # contact us first. # ! # Script was successfully tested on Gentoo 1.4 ! # Please email me (dia...@ge...) if you have major problems. # or (is...@ge...) # This software is under GNU General Public License, so the appropriate --- 5,11 ---- # contact us first. # ! # Script was successfully tested on Gentoo-1.4, RedHat7.x & 9.x, ! # Mandrake 9.x, Debian. ! # Please email (dia...@ge...) if you have major problems. # or (is...@ge...) # This software is under GNU General Public License, so the appropriate *************** *** 22,26 **** # Created by Ishtar & StoneC0ld # Adapted by Diaboliq to suit 2.0 needs ! # Last updated 2003-09-13 clear --- 23,28 ---- # Created by Ishtar & StoneC0ld # Adapted by Diaboliq to suit 2.0 needs ! # Updated by Ishtar to fix *BSD problems. ! # Last updated 2003-10-20 clear *************** *** 38,41 **** --- 40,46 ---- echo See doc/README.installer-basic for more details. echo + echo \*\*\*\*\* WARNING: DO NOT USE THE INSTALLER UNDER \*BSD SYSTEMS \*\*\*\*\* + echo \*\*\*\*\* USE ./installer.bsd INSTEAD \*\*\*\*\* + sleep 5 *************** *** 81,85 **** # on the hdd. # # Note that this only seems to work on some # ! # recent versions of bash only. -- Ishtar # ################################################### --- 86,90 ---- # on the hdd. # # Note that this only seems to work on some # ! # recent versions of bash. -- Ishtar # ################################################### *************** *** 109,113 **** echo echo ! echo Basic installation completed. Make sure to edit your ircd.conf and MOTD\'s. echo exit --- 114,120 ---- echo echo ! echo Basic installation completed. ! echo You will need to copy ircd.conf and your MOTDs from your ! echo gircd2.0/doc dir to $INSTALLDIR and edit them. echo exit *************** *** 242,252 **** echo read -p "Enter server name (City.State.Country.GenericNet.Org):" SBSERVERNAME ! elif [ -e ../name.txt ] then ! rm -f ../name.txt ! touch ../name.txt ! echo This server is: $SBSERVERNAME >> ../name.txt else ! echo This server is: $SBSERVERNAME >> ../name.txt fi if [ "$REPLY" == "2" ]; --- 249,259 ---- echo read -p "Enter server name (City.State.Country.GenericNet.Org):" SBSERVERNAME ! elif [ -e name.txt ] then ! rm -f name.txt ! touch name.txt ! echo This server is: $SBSERVERNAME >> name.txt else ! echo This server is: $SBSERVERNAME >> name.txt fi if [ "$REPLY" == "2" ]; *************** *** 342,352 **** echo Y:15:90:0:100:160000 >> $INSTALLDIR/ircd.conf echo Y:10:90:0:100:160000 >> $INSTALLDIR/ircd.conf ! echo Y:2:90:0:5:160000 >> $INSTALLDIR/ircd.conf echo Y:1:90:0:400:160000 >> $INSTALLDIR/ircd.conf - echo Y:3:90:0:5:160000 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf echo \# I:Lines \(EDIT AT YOUR OWN RISK\) >> $INSTALLDIR/ircd.conf ! echo I:*\@*::Unresolved::3 >> $INSTALLDIR/ircd.conf ! echo I:Resolved::*\@*::2 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf echo \# U:Line \(DO NOT TOUCH!!\) >> $INSTALLDIR/ircd.conf --- 349,358 ---- echo Y:15:90:0:100:160000 >> $INSTALLDIR/ircd.conf echo Y:10:90:0:100:160000 >> $INSTALLDIR/ircd.conf ! echo Y:2:90:0:5:80000 >> $INSTALLDIR/ircd.conf echo Y:1:90:0:400:160000 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf echo \# I:Lines \(EDIT AT YOUR OWN RISK\) >> $INSTALLDIR/ircd.conf ! echo I:*\@*::Unresolved::1 >> $INSTALLDIR/ircd.conf ! echo I:Resolved::*\@*::1 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf echo \# U:Line \(DO NOT TOUCH!!\) >> $INSTALLDIR/ircd.conf *************** *** 406,410 **** echo "# S:moo.fish.moo:elitepassword::" >> $INSTALLDIR/ircd.conf echo "# Oper sethost for 'moo.fish.moo' with auto on 'ident@*.example.com'" >> $INSTALLDIR/ircd.conf ! echo "# S:moo.fish.moo::*.example.com:ident" >> $INSTALLDIR/ircd.con echo F:RANDOM_SEED:25413652 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf --- 412,416 ---- echo "# S:moo.fish.moo:elitepassword::" >> $INSTALLDIR/ircd.conf echo "# Oper sethost for 'moo.fish.moo' with auto on 'ident@*.example.com'" >> $INSTALLDIR/ircd.conf ! echo "# S:moo.fish.moo::*.example.com:ident" >> $INSTALLDIR/ircd.conf echo F:RANDOM_SEED:25413652 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf *************** *** 577,587 **** # Finally, remove crap generated by applying/reversing patches ! rm -f $PWD/ircd/*.*.rej >> $PWD/rej ! rm -f $PWD/include/*.*.rej >> $PWD/rej ! rm -f $PWD/doc/*.*.rej >> $PWD/rej ! rm -f $PWD/ircd/*.*.orig >> $PWD/rej ! rm -f $PWD/include/*.*.orig >> $PWD/rej ! rm -f $PWD/doc/*.*.orig >> $PWD/rej ! rm -f $PWD/rej cd $PWD --- 583,594 ---- # Finally, remove crap generated by applying/reversing patches ! # Dont need it anymore.... ! #rm -f $PWD/ircd/*.*.rej >> $PWD/rej ! #rm -f $PWD/include/*.*.rej >> $PWD/rej ! #rm -f $PWD/doc/*.*.rej >> $PWD/rej ! #rm -f $PWD/ircd/*.*.orig >> $PWD/rej ! #rm -f $PWD/include/*.*.orig >> $PWD/rej ! #rm -f $PWD/doc/*.*.orig >> $PWD/rej ! #rm -f $PWD/rej cd $PWD *************** *** 708,713 **** echo echo Suggestions/comments about this script ! echo should be sent to StoneC0ld\@GenericNet.Org ! echo and/or Ishtar\@GenericNet.Org echo -------------------------------------------------------------------------------- echo --- 715,720 ---- echo echo Suggestions/comments about this script ! echo should be sent to StoneC0ld\@GenericNet.Org, ! echo Ishtar\@GenericNet.Org and/or Diaboliq\@GenericNet.Org. echo -------------------------------------------------------------------------------- echo Index: motd-maker =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/motd-maker,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** motd-maker 12 Jul 2003 20:07:54 -0000 1.1.1.1 --- motd-maker 20 Oct 2003 09:27:41 -0000 1.2 *************** *** 40,44 **** echo Your Operators are: >> $INSTALLDIR/ircd.motd cat $PWD/opers.txt >> $INSTALLDIR/ircd.motd ! cat $PWD/motd >> $INSTALLDIR/ircd.motd echo Using installer generated information to create MOTD.... else --- 40,44 ---- echo Your Operators are: >> $INSTALLDIR/ircd.motd cat $PWD/opers.txt >> $INSTALLDIR/ircd.motd ! cat $PWD/doc/motd.templ >> $INSTALLDIR/ircd.motd echo Using installer generated information to create MOTD.... else |
From: Courtney J. <is...@se...> - 2003-10-20 15:46:09
|
-- __________________________________________________________ Sign-up for your own personalized E-mail at Mail.com http://www.mail.com/?sr=signup CareerBuilder.com has over 400,000 jobs. Be smarter about your job search http://corp.mail.com/careers |
From: <sto...@us...> - 2003-10-20 15:10:00
|
Update of /cvsroot/genericircd/gircd2.0/doc In directory sc8-pr-cvs1:/tmp/cvs-serv23925/doc Modified Files: Authors readme.cvs Log Message: fixed minor installer bugs, added BSD installer, added some missing files, and moved all documentation to doc/. Commit on behalf of Ishtar Index: Authors =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/doc/Authors,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Authors 12 Jul 2003 20:07:55 -0000 1.1.1.1 --- Authors 20 Oct 2003 09:27:41 -0000 1.2 *************** *** 214,215 **** --- 214,221 ---- R33D33R <re...@re...> Math <ma...@ro...> + + The current gircd2.x coders/maintainers are: + + Diaboliq (coder) <dia...@ge...> + StoneC0ld (coder) <sto...@ge...> + Ishtar (maintainer) <is...@ge...> Index: readme.cvs =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/doc/readme.cvs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** readme.cvs 12 Jul 2003 20:08:00 -0000 1.1.1.1 --- readme.cvs 20 Oct 2003 09:27:41 -0000 1.2 *************** *** 1,93 **** ! Notes on checking out from the Undernet CVS archive and maintenance. ! ! General Strategy: ! The main trunk of the tree will be used for ongoing development only ! (alpha) this code is not intended to be used on the production network. ! When development has reached a point of relative stability a tag will be ! applied to the development branch and a beta tag will be applied to that ! branch. For beta test servers only the tagged branches will be used. ! When a tag is applied we will also produce a snapshot tarball of the ! tag. Once a beta tagged release has been proven stable any fixes will be ! merged into the main tagged version and the code will be voted on for ! release. Fixes after release will be tagged with a patchlevel tag. ! ! You check out a tagged release by specifying the -r tag option to cvs. ! This is the command to check out the most recent tagged version of ! ircu2.10.07: ! cvs -d :pserver:an...@co...:/home/coder-com/cvs co -r u2_10_07_pl6 -P ircu2.10 ! ! Developers doing maintenance and bug fixes should only check out the ! current tagged patchlevel for the affected version. Once the fix has ! proven stable, it will be merged into the tree the fix is relative to. ! ! We will not merge the changes that have been made to ircu2.10.07 since ! it's release into the development branch, the 2.10.07 branch is a ! maintenance only branch. ! ! If you have any questions on how to check out tagged versions check out ! the coder-com web page http://coder-com.undernet.org/cvs.html or the cvs ! manual page. If you're really stumped feel free to ask on coder-com. ! ! We will put out new tarballs for every tagged release which will be ! available on the coder-com web page. ! ! Naming Conventions: ! ! Tag Names: ! Major release - u2_10_10 ! Beta release - u2_10_10_beta01 ! Production patch - u2_10_07_pl9 ! ! The tree currently looks like this: ! ! Trunk: development only ! ------------------------------------------------ ! \ \ ! \----- u2_10_07 \---- u2_10_10 --- release --------- ! \ \ \ ! \--- u2_10_07_pl9 \--- u2_10_10_beta06 \ u2_10_10_pl01 ! ! Patches will be rolled into the tagged branch and eventually rolled into ! the development branch. All new development should be relative to the ! trunk, only bugfixes and maintenance coding should be applied to any ! tagged version. Developers doing maintenance should only check out the ! latest pl or beta tag and apply the changes relative to that tag. These ! changes will be committed to the tag they were checked out from and once ! proven stable they will be merged into the main tagged trunk by the ! maintainer. ! ! Where to get CVS: ! http://www.loria.fr/~molli/cvs-index.html ! ! Checking out: ! First you need to login to cvs: ! cvs -d :pserver:an...@co...:/home/coder-com/cvs login ! ! It will prompt you for a password. The password is "anoncvs". ! ! To check out the recommended patchlevel for ircu2.10.07 use: ! cvs -d :pserver:an...@co...:/home/coder-com/cvs co -r u2_10_07_pl6 -P ircu2.10 ! ! For the ircu2.10.10 beta archive use: ! cvs -d :pserver:an...@co...:/home/coder-com/cvs co -r u2_10_10_beta06 -P ircu2.10 ! ! To check out the current development archive use: ! cvs -d :pserver:an...@co...:/home/coder-com/cvs co -P ircu2.10 ! ! For the ircu3 pipedream archive use: ! cvs -d :pserver:an...@co...:/home/coder-com/cvs co -P ircu3 ! ! When you want to update your source tree later to the latest version, use ! cvs update -P ! inside ircu2.10/, the directory ircu2.10 was checked out to. ! How to find the most current available release: ! We will announce the most current release tag when we make it available, in general ! you will check out the main branch of any given tree, if you want the current production ! release use the "u2_10_07" tag, for patched versions use a patchlevel tag "u2_10_07_pl6". ! You can always find the most recent tag for any version by looking at the Undernet ! Coder Com CVS archive: http://coder-com.undernet.org/cgi-bin/cvsweb.cgi --- 1,19 ---- + GenericNet gircd CVS ! The CVS is very useful to keep an updated ircd downloadable for users, ! and easely maintained by the coders. We strongly suggest everyone to ! use CVS rather than website/ftp found TARBALLs, which arent always up ! to date. ! To login to the CVS server, use the following: ! cvs -d:pserver:ano...@cv...:/cvsroot/genericircd login ! (if prompted for a password, simply press enter) ! To download our CVS ircd, use the following: ! cvs -z3 -d:pserver:ano...@cv...:/cvsroot/genericircd co gircd2.0 + To update your current gircd to the latest, in the gircd2.0 dir, type: + cvs update -dP + For our web interface to cvs, visit the following link: + http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/genericircd |
From: <sto...@us...> - 2003-10-20 15:09:47
|
Update of /cvsroot/genericircd/gircd2.0/tools In directory sc8-pr-cvs1:/tmp/cvs-serv23925/tools Modified Files: Makefile.crypt mkpasswd mkpasswd.c Log Message: fixed minor installer bugs, added BSD installer, added some missing files, and moved all documentation to doc/. Commit on behalf of Ishtar Index: Makefile.crypt =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/tools/Makefile.crypt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.crypt 12 Jul 2003 20:09:02 -0000 1.1.1.1 --- Makefile.crypt 20 Oct 2003 09:27:41 -0000 1.2 *************** *** 29,32 **** --- 29,33 ---- mkpasswd: mkpasswd.c gcc -Wall -O2 mkpasswd.c -o mkpasswd ${LIBS} + gcc -Wall -O2 instmkpass.c -o instmkpass ${LIBS} install: *************** *** 35,37 **** clean: ! /bin/rm -f mkpasswd --- 36,38 ---- clean: ! /bin/rm -f mkpasswd instmkpass Index: mkpasswd =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/tools/mkpasswd,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsPFcI0i and /tmp/cvsy18NKr differ Index: mkpasswd.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/tools/mkpasswd.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** mkpasswd.c 12 Jul 2003 20:09:03 -0000 1.1.1.1 --- mkpasswd.c 20 Oct 2003 09:27:42 -0000 1.2 *************** *** 32,36 **** } ! plaintext = argv[1]; printf("%s\n", crypt(plaintext, salt)); --- 32,36 ---- } ! plaintext = getpass("plaintext: "); printf("%s\n", crypt(plaintext, salt)); |
From: <dia...@us...> - 2003-10-18 01:54:24
|
Update of /cvsroot/genericircd/gircd2.0 In directory sc8-pr-cvs1:/tmp/cvs-serv14112 Modified Files: installer Log Message: Feature request: remove hiding of the G-line reason. Index: installer =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/installer,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** installer 14 Oct 2003 11:50:29 -0000 1.5 --- installer 17 Oct 2003 16:49:10 -0000 1.6 *************** *** 431,434 **** --- 431,435 ---- echo F:SETHOST_USER:TRUE >> $INSTALLDIR/ircd.conf echo F:SETHOST:TRUE >> $INSTALLDIR/ircd.conf + echo F:HIS_GLINE:FALSE >> $INSTALLDIR/ircd.conf echo echo ircd.conf created! |
From: <dia...@us...> - 2003-10-15 11:55:14
|
Update of /cvsroot/genericircd/gircd2.0/ircd In directory sc8-pr-cvs1:/tmp/cvs-serv8636/ircd Modified Files: s_user.c Log Message: Removed +k mode for users. Now only services will be able to use it. Index: s_user.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/s_user.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** s_user.c 12 Jul 2003 20:08:59 -0000 1.1.1.1 --- s_user.c 15 Oct 2003 11:55:04 -0000 1.2 *************** *** 1531,1542 **** if (!FlagHas(&setflags, FLAG_LOCOP) && IsLocOp(sptr)) ClearLocOp(sptr); ! /* ! * new umode; servers can set it, local users cannot; ! * prevents users from /kick'ing or /mode -o'ing ! * ! * ASUKA: Allow opers to set +k. Also, restrict +XnI to ! * opers only also. ! */ ! if (!FlagHas(&setflags, FLAG_CHSERV) && !IsOper(sptr)) ClearChannelService(sptr); if (!FlagHas(&setflags, FLAG_XTRAOP) && !IsOper(sptr)) --- 1531,1535 ---- if (!FlagHas(&setflags, FLAG_LOCOP) && IsLocOp(sptr)) ClearLocOp(sptr); ! if (!FlagHas(&setflags, FLAG_CHSERV)) ClearChannelService(sptr); if (!FlagHas(&setflags, FLAG_XTRAOP) && !IsOper(sptr)) |
From: <dia...@us...> - 2003-10-14 11:50:35
|
Update of /cvsroot/genericircd/gircd2.0 In directory sc8-pr-cvs1:/tmp/cvs-serv19204 Modified Files: installer Log Message: Fixed I:lines. Only 5 clients per ip/host with a 160000 sendq size Index: installer =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/installer,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** installer 20 Sep 2003 22:18:58 -0000 1.4 --- installer 14 Oct 2003 11:50:29 -0000 1.5 *************** *** 342,351 **** echo Y:15:90:0:100:160000 >> $INSTALLDIR/ircd.conf echo Y:10:90:0:100:160000 >> $INSTALLDIR/ircd.conf ! echo Y:2:90:0:5:80000 >> $INSTALLDIR/ircd.conf echo Y:1:90:0:400:160000 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf echo \# I:Lines \(EDIT AT YOUR OWN RISK\) >> $INSTALLDIR/ircd.conf ! echo I:*\@*::Unresolved::1 >> $INSTALLDIR/ircd.conf ! echo I:Resolved::*\@*::1 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf echo \# U:Line \(DO NOT TOUCH!!\) >> $INSTALLDIR/ircd.conf --- 342,352 ---- echo Y:15:90:0:100:160000 >> $INSTALLDIR/ircd.conf echo Y:10:90:0:100:160000 >> $INSTALLDIR/ircd.conf ! echo Y:2:90:0:5:160000 >> $INSTALLDIR/ircd.conf echo Y:1:90:0:400:160000 >> $INSTALLDIR/ircd.conf + echo Y:3:90:0:5:160000 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf echo \# I:Lines \(EDIT AT YOUR OWN RISK\) >> $INSTALLDIR/ircd.conf ! echo I:*\@*::Unresolved::3 >> $INSTALLDIR/ircd.conf ! echo I:Resolved::*\@*::2 >> $INSTALLDIR/ircd.conf echo >> $INSTALLDIR/ircd.conf echo \# U:Line \(DO NOT TOUCH!!\) >> $INSTALLDIR/ircd.conf |