ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/svn/ircd-hybrid/src
(Current path doesn't exist after revision 1586)
r257
File Last Change
 ../
conf/ 226 (18 years ago) by adx: + missing header
parse_aline.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
csvlib.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
resv.c 141 (18 years ago) by db: - Make ->conf conf_ptr to be consistent in all places.
hostmask.c 146 (18 years ago) by db: - More conf cleanups, aconf->client count is no longer needed as an AccessItem can now be deleted immediately. - Note bug in s_conf.c with flush_deleted_I_P, it was trying to free MatchItems using an AccessConf this bug is in 7.1.4 as well as 7.2 flush_deleted_I_P() is no longer needed at all in 7.3 since AccessItems are removed immediately. - Fixed a few cores in server establishment, notably ->serv has to be allocated sooner since there are no confs to attach. make_server() is probably called once too often now.
listener.c 162 (18 years ago) by michael: - Removed LocalUser.port
packet.c 178 (18 years ago) by adx: - somehow it didn't get committed, fixing
whowas.c 194 (18 years ago) by michael: - Fixed several compiletime warnings
Makefile.in 217 (18 years ago) by michael: - Fixed compile error in m_invite.c and s_serv.c - Added m_watch.c
s_serv.c 217 (18 years ago) by michael: - Fixed compile error in m_invite.c and s_serv.c - Added m_watch.c
y.tab.c 221 (18 years ago) by michael: - 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.
y.tab.h 221 (18 years ago) by michael: - 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.
modules.c 221 (18 years ago) by michael: - 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.
ircd_lexer.l 221 (18 years ago) by michael: - 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.
s_user.c 221 (18 years ago) by michael: - 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.
ircd_parser.y 221 (18 years ago) by michael: - 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.
lex.yy.c 221 (18 years ago) by michael: - 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.
channel_mode.c 227 (18 years ago) by db: - replace all MODE_PRIVATE with MODE_PARANOID - Can't use make_dlink_node() too early in startup or it will core
channel.c 227 (18 years ago) by db: - replace all MODE_PRIVATE with MODE_PARANOID - Can't use make_dlink_node() too early in startup or it will core
messages.tab 232 (18 years ago) by db: - This commits the n!u@h accept code I'll tidy it up more later.
watch.c 233 (18 years ago) by michael: - Style correction to watch.c - Add some statistical information about WATCH headers/entries to "STATS z"
client.c 238 (18 years ago) by db: - Fix core, don't try to remove accepts for remote clients
send.c 249 (18 years ago) by michael: - Moved serial to LocalUser part
s_conf.c 256 (18 years ago) by michael: - Fixed core caused by memory corruption with cluster{} blocks
ircd.c 257 (18 years ago) by michael: - Forgot to remove my debugging code ..
dynlink.c 257 (18 years ago) by michael: - Forgot to remove my debugging code ..
getopt.c 33 (18 years ago) by knight: - svn:keywords
s_gline.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")
rsa.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")
numeric.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")
s_stats.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_error.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")
s_auth.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")
hash.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")
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")
parse.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")
version.c 77 (18 years ago) by adx: - misc win32 fixes
ircd_signal.c 78 (18 years ago) by adx: - further win32 fixes, use ircd_signal.c interface (signals are wrapped around WM_USER's wParam) - note that the callback for WM_SIGNAL (ie WM_USER) defined in libio is independent from the ircd, ie variable dispatch_wm_signal is set in ircd_signal.c. - now it compiles, to do: turn libio into a DLL to allow symbol references in m_*.dll protocol modules.
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 38 files shown

Properties

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