Revision
862 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 5 04:33:38 2007 UTC
(19 years, 4 months ago)
by
db
Original Path:
ircd-hybrid/src/conf
Diff to
previous 861
- move buf_cb_sendto_one() into send.c from strbuf
- add kludge to Makefile to force strbuf.o functions to be linked into ircd
- add temp kludges to deny. and kill.c to allow ircd to link (FIX!!!)
- Finally! modify m_names.c to use strbuf
Revision
861 -
Directory Listing
-
[select for diffs]
Modified
Thu Mar 1 10:14:18 2007 UTC
(19 years, 4 months ago)
by
adx
Original Path:
ircd-hybrid/src/conf
Diff to
previous 860
+ "oper" and "added" are for admin's information; NULL (i.e. smalldate)
is indeed redundant, but I believe it still belongs in conf/ rather than
reanalysing stuff in conf/parser/ (which additionally makes a
reverse dependence, i.e. conf parser on store types)
Revision
860 -
Directory Listing
-
[select for diffs]
Modified
Thu Mar 1 01:15:49 2007 UTC
(19 years, 4 months ago)
by
bear
Original Path:
ircd-hybrid/src/conf
Diff to
previous 851
Remove legacy fields from ConfStoreField[] arrays, a legacy csv imple-
mentation will be able to generate them itself, nobody else needs them.
Also store conf file name in the ConfStore struct.
Revision
851 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 19 21:55:24 2007 UTC
(19 years, 5 months ago)
by
bear
Original Path:
ircd-hybrid/src/conf
Diff to
previous 847
Move some logic from m_kline.c to conf/kill.c, integrate stuff with new csvlib,
clean up / simplify / centralize some code.
parse_aline.c should really be called aline.c or so now
Revision
828 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 23 21:23:11 2006 UTC
(19 years, 8 months ago)
by
stu
Original Path:
ircd-hybrid/src/conf
Diff to
previous 827
- Add src/modules.c - This gives us back MOD((UN|RE)LOAD|RESTART) (doesnt take
core modules into account)
- Add CT_FLAG - a generic way of adding backward compatible foo = yes; flags
- Correct a couple of conf entries which didnt quite match 7.2
- Allow bools to be passed through to a CT_LIST properly
Revision
771 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 22 18:54:38 2006 UTC
(19 years, 11 months ago)
by
adx
Original Path:
ircd-hybrid/src/conf
Diff to
previous 768
+ after fixing a bunch of bugs, ircd is finally able to start up and /connect.
+ problems: kline/xline and such refuse to load (missing write_csv_line),
modload & co are also not present (need to implement module-like m_ files?)
Revision
628 -
Directory Listing
-
[select for diffs]
Modified
Mon May 29 20:04:32 2006 UTC
(20 years, 1 month ago)
by
adx
Original Path:
ircd-hybrid/src/conf
Diff to
previous 623
Added contrib module for character set recoding
Note it doesn't work at the moment because listen{} itself
is not yet modularised. Will probably also need some modifications
to include iconv headers and libraries in the build process.
Revision
477 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 18 12:34:09 2006 UTC
(20 years, 5 months ago)
by
adx
Original Path:
ircd-hybrid/src/conf
Diff to
previous 476
+ additional parameter 'exact' for find_module():
if NO, match only the canonical name i.e. m_part.ABC will match
m_part.so or built-in m_part (used to check if any version of a
module is loaded)
if YES, match the whole file name (used with /modunload and friends)
Revision
398 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 7 12:00:21 2006 UTC
(20 years, 5 months ago)
by
michael
Original Path:
ircd-hybrid/src/conf
Diff to
previous 366
- Ripped out lazylinks as discussed on irc. the main concept wasn't very well
designed and will be done in a better way some day. Anyways, they propably
never worked and were considered bloat by most people. Good bye!
Revision
267 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 13 22:54:08 2005 UTC
(20 years, 8 months ago)
by
adx
Original Path:
ircd-hybrid/src/conf
Diff to
previous 262
+ s/extern/EXTERN/ in include/conf
+ implemented class{} from scratch; it's almost done,
I only need to add limit checking code
+ added nice syntax e.g. number_per_ip = 3, global:5;
+ added some aliases ie host_limit === number_per_ip,
userhost_limit === number_per_userhost
(replaces max_local & max_global mess)
+ check example.conf for more details.
Revision
221 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 3 15:36:27 2005 UTC
(20 years, 8 months ago)
by
michael
Original Path:
ircd-hybrid/src/conf
Diff to
previous 212
- Finished WATCH implementation
- Added missing 'return' after register_remote_user() call in
nick_from_server() which would cause an extra hash_del/strcpy/hash_add
combination.
Revision
209 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 1 19:28:42 2005 UTC
(20 years, 8 months ago)
by
adx
Original Path:
ircd-hybrid/src/conf
Diff to
previous 207
+ coded new serverinfo
+ added parse_fatal, similar to parse_error but using L_CRIT and server_die
+ cold moved out from reset_conf, verify_conf callbacks to a global conf_cold
Revision
91 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 8 03:46:09 2005 UTC
(20 years, 9 months ago)
by
db
Original Path:
ircd-hybrid/src/conf
Diff to
previous 90
- Split out most of the *line *resv stuff into separate file
parse_aline.c should go eventually into the subdir conf
- removed double -o in Makefile.in in src, this caused compile to fail for me
Revision
89 -
Directory Listing
-
[select for diffs]
Added
Thu Oct 6 21:22:58 2005 UTC
(20 years, 9 months ago)
by
adx
Original Path:
ircd-hybrid/src/conf
- added dynamically extensible conf parser (compiles ok); enough to start
modularising general{} -> general.c, auth{} -> auth.c and so on.