ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/svn/ircd-hybrid/modules
(Current path doesn't exist after revision 1586)
r400
File Last Change
 ../
core/ 398 (18 years ago) by michael: - 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!
m_pong.c 126 (18 years ago) by db: - attach/conf cleanup take 2 - Each client has now one AccessItem for its connect stored in localClient->iline - The corresponding class is now stored in localClient->class The ramifications of this move are, there is no conf list to traverse to find the AccessItem, the class is instantly available from the localClient struct without having to traverse the confs list and indirectly through the aconf. This speeds up get_sendq etc. functions. As a bonus, at least 4 fewer bytes are used in the Client struct, since a dlink list is 4 words. It does mean there is no longer a separate conf oper, which leads to the kludge of patching the clients iline into an oper conf when a client opers up. I don't think the oper flags are used after the client is opered, so the patching operation may not be necessary. - Server confs are stored in ->serv->sconf as before but attaching happens much earlier. - server hub/leaf masks continues to be a dlink list but linked from the ->serv which is only allocated for servers. - cleaned up some comments, added a comment, notably to check_server() which badly needed it. - Pass ClassItem or AccessItem etc. in when it makes more sense than passing in struct ConfItem. This simplified and clarified rebuild_cidr_class() And lo, there was a great rejoicing.
m_rkline.c 139 (18 years ago) by db: - get rid of map_conf_item and unmap_conf_item - Use an union in struct ConfItem, but only allocate memory needed
m_rxline.c 139 (18 years ago) by db: - get rid of map_conf_item and unmap_conf_item - Use an union in struct ConfItem, but only allocate memory needed
m_oper.c 139 (18 years ago) by db: - get rid of map_conf_item and unmap_conf_item - Use an union in struct ConfItem, but only allocate memory needed
m_watch.c 260 (18 years ago) by michael: - propset svn:keywords "Id" modules/m_watch.c
m_map.c 270 (18 years ago) by adx: + ported rate limiting fixes from 7.2
m_users.c 270 (18 years ago) by adx: + ported rate limiting fixes from 7.2
m_version.c 270 (18 years ago) by adx: + ported rate limiting fixes from 7.2
m_whowas.c 270 (18 years ago) by adx: + ported rate limiting fixes from 7.2
m_links.c 270 (18 years ago) by adx: + ported rate limiting fixes from 7.2
m_set.c 278 (18 years ago) by db: - add a maxlisters /quote set limit the number of possible listings going on at once
m_etrace.c 290 (18 years ago) by michael: - Moved has_wildcards() from m_list.c to match.c and re-use it in some other places.
m_trace.c 290 (18 years ago) by michael: - Moved has_wildcards() from m_list.c to match.c and re-use it in some other places.
m_resv.c 290 (18 years ago) by michael: - Moved has_wildcards() from m_list.c to match.c and re-use it in some other places.
m_post.c 33 (18 years ago) by knight: - svn:keywords
m_user.c 332 (18 years ago) by michael: - Got rid of do_local_user() function
m_tburst.c 334 (18 years ago) by michael: - Add missing semicolon
m_away.c 345 (18 years ago) by michael: - Continue doxyfying modules
m_admin.c 347 (18 years ago) by michael: - m_admin.c: fixed comment about parv[1]. Also did some style cleanups
m_capab.c 348 (18 years ago) by michael: - More documentation
m_close.c 348 (18 years ago) by michael: - More documentation
m_encap.c 350 (18 years ago) by michael: - documentings
m_hash.c 350 (18 years ago) by michael: - documentings
m_eob.c 350 (18 years ago) by michael: - documentings
m_gline.c 350 (18 years ago) by michael: - documentings
m_kline.c 351 (18 years ago) by michael: - Don't allow shared (remote) k-lines to be set without a valid reason
m_info.c 353 (18 years ago) by michael: - Kill mo_info() and use ms_info() instead
m_testline.c 357 (18 years ago) by michael: - Mainly re-wrote split_nuh() to fix a regexp kline bug where we would cut off the user portion after 9 chars, but also to be a bit more flexible when we have to deal with different user/host name lengths. - Re-wrote m_capture() to use split_nuh()
m_accept.c 362 (18 years ago) by metalrock: - Fixed some compile errors and some shadowed declarations.
m_connect.c 374 (18 years ago) by michael: - More m_connect cleanups, I also never liked the idea of temporarily modifying a connect item, so let's do this a bit different now.
m_challenge.c 375 (18 years ago) by michael: - Don't free() source_p->localClient->auth_oper after calling oper_up() on source_p. Added small explanatation about why you shouldn't do that.
m_stats.c 381 (18 years ago) by michael: - Cleaned up some special magic in show_iline_prefix. Someone tell me why we should copy aconf->user into a separate buffer after the prefix? Also renamed it to make_iline_prefix.
m_xline.c 383 (18 years ago) by michael: - Forward-port relay_xline fix from 7.2
Makefile.in 398 (18 years ago) by michael: - 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!
m_userhost.c 398 (18 years ago) by michael: - 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!
m_invite.c 398 (18 years ago) by michael: - 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!
m_ison.c 398 (18 years ago) by michael: - 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!
m_who.c 398 (18 years ago) by michael: - 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!
m_knock.c 398 (18 years ago) by michael: - 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!
m_ping.c 398 (18 years ago) by michael: - 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!
m_names.c 398 (18 years ago) by michael: - 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!
m_list.c 398 (18 years ago) by michael: - 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!
m_cryptlink.c 398 (18 years ago) by michael: - 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!
m_whois.c 398 (18 years ago) by michael: - 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!
m_lusers.c 399 (18 years ago) by michael: - Removed LL leftovers
m_topic.c 400 (18 years ago) by michael: - Got rid of ms_topic()
m_operwall.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_omotd.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_svinfo.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_rehash.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_testmask.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_help.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_time.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_motd.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_pass.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_wallops.c 69 (18 years ago) by adx: - splitted ircd/libio, all headers connected with libio sources have been moved for internal use only. To use libio interface, include "libio.h" (which is already done in "stdinc.h")
m_locops.c 91 (18 years ago) by db: - 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
m_restart.c 97 (18 years ago) by michael: - Got rid of restart(), cleaned up m_restart() and make it use server_die()
1 directory and 58 files shown

Properties

Name Value
svn:ignore Makefile *~ *.rej *.orig *core *.o config.status config.cache config.log autom4te.cache .depend .kdev*