ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/svn/ircd-hybrid/include/conf
Revision 719 - Directory Listing - [select for diffs]
Modified Sun Jul 16 16:56:58 2006 UTC (20 years ago) by adx
Diff to previous 679
+ reworked operator{} blocks to make them independent from oldconf
+ moved some utilities from s_conf.* to libio
+ added stub for auth{} blocks

Revision 679 - Directory Listing - [select for diffs]
Modified Thu Jun 15 08:06:49 2006 UTC (20 years, 2 months ago) by adx
Diff to previous 657

Revision 657 - Directory Listing - [select for diffs]
Modified Fri Jun 9 18:07:14 2006 UTC (20 years, 2 months ago) by adx
Diff to previous 628
+ added implementation for listen{}
+ fixed header in conf_channel.c

Revision 628 - Directory Listing - [select for diffs]
Modified Mon May 29 20:04:32 2006 UTC (20 years, 2 months ago) by adx
Diff to previous 477
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
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 476 - Directory Listing - [select for diffs]
Modified Sat Feb 18 07:19:35 2006 UTC (20 years, 5 months ago) by michael
Diff to previous 474
- Get operator.c to compile (with a few warnings)

Revision 474 - Directory Listing - [select for diffs]
Modified Sat Feb 18 02:12:40 2006 UTC (20 years, 5 months ago) by adx
Diff to previous 467
+ finished modules API
+ now we need to put these mo_modload etc somewhere

Revision 467 - Directory Listing - [select for diffs]
Modified Tue Feb 14 00:27:11 2006 UTC (20 years, 5 months ago) by adx
Diff to previous 421
+ module manager

Revision 421 - Directory Listing - [select for diffs]
Modified Fri Feb 10 14:26:35 2006 UTC (20 years, 6 months ago) by adx
Diff to previous 420
+ make conf_add_field return pointer to ConfField

Revision 420 - Directory Listing - [select for diffs]
Modified Fri Feb 10 14:23:33 2006 UTC (20 years, 6 months ago) by adx
Diff to previous 366
+ added support for syntax SECTION "value" { ...fields... };
  ConfSection has a field 'def_field', if non-NULL it will be
  assigned with the provided value.

Revision 366 - Directory Listing - [select for diffs]
Modified Sun Jan 8 22:12:22 2006 UTC (20 years, 7 months ago) by adx
Diff to previous 267
+ added support for integer enumeration in conf manager
+ will need this for listen{}

Revision 267 - Directory Listing - [select for diffs]
Modified Sun Nov 13 22:54:08 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 224
+ 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 224 - Directory Listing - [select for diffs]
Modified Thu Nov 3 17:05:46 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 223
+ added logging{} block. I hate to add this rusty code to new conf
  but it's the only way for now..
+ style corrections

Revision 223 - Directory Listing - [select for diffs]
Modified Thu Nov 3 15:42:51 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 221
+ moved max_watch to the beginning of 'registered users' subsection

Revision 221 - Directory Listing - [select for diffs]
Modified Thu Nov 3 15:36:27 2005 UTC (20 years, 9 months ago) by michael
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 212 - Directory Listing - [select for diffs]
Modified Tue Nov 1 22:17:16 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 209
+ simple implementation of modules{}
+ ok this sucks, we need new module manager

Revision 209 - Directory Listing - [select for diffs]
Modified Tue Nov 1 19:28:42 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 206
+ 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 206 - Directory Listing - [select for diffs]
Modified Tue Nov 1 14:58:39 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 205
+ implemented admin{} support

Revision 205 - Directory Listing - [select for diffs]
Modified Tue Nov 1 14:13:53 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 204
+ implemented serverhide{}
+ added splitmode activation/deactivation to conf/channel.c

Revision 204 - Directory Listing - [select for diffs]
Modified Tue Nov 1 12:30:39 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 203
+ added missing call in init_conf()
+ added serverhide{} skeleton

Revision 203 - Directory Listing - [select for diffs]
Modified Tue Nov 1 12:24:28 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 200
+ implemented channel{}

Revision 200 - Directory Listing - [select for diffs]
Modified Tue Nov 1 11:38:41 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 190
+ removed invite_ops_only, controlled by +p now
+ sorted ircd.conf:channel{} a bit
+ added newconf framework for channel{}
+ added missing 7.2 RELNOTES


Revision 190 - Directory Listing - [select for diffs]
Modified Sun Oct 23 22:06:17 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 183
* prototypes are now prefixed with either nothing or EXTERN
  (meaning it's an ircd.dll API)
* dynamic modules now work on win32.
Revision 183 - Directory Listing - [select for diffs]
Modified Sun Oct 23 00:01:26 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 182
- copyright fixes

Revision 182 - Directory Listing - [select for diffs]
Modified Sat Oct 22 23:49:43 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 181
* implemented general{}

Revision 181 - Directory Listing - [select for diffs]
Modified Sat Oct 22 19:30:19 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 180
* finish last commit

Revision 180 - Directory Listing - [select for diffs]
Modified Sat Oct 22 19:26:46 2005 UTC (20 years, 9 months ago) by adx
Diff to previous 179
* added general{} framework

Revision 179 - Directory Listing - [select for diffs]
Added Sat Oct 22 11:23:29 2005 UTC (20 years, 9 months ago) by adx
- rearranged new conf headers a bit

(Current path doesn't exist after revision 1026)

Convenience Links