ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/svn/ircd-hybrid/src
(Current path doesn't exist after revision 1586)
r193
File Last Change
 ../
conf/ 183 (18 years ago) by adx: - copyright fixes
Makefile.in 185 (18 years ago) by adx: * dynamic module support for win32
ircd.c 185 (18 years ago) by adx: * dynamic module support for win32
y.tab.c 190 (18 years ago) by adx: * prototypes are now prefixed with either nothing or EXTERN (meaning it's an ircd.dll API) * dynamic modules now work on win32.
modules.c 190 (18 years ago) by adx: * prototypes are now prefixed with either nothing or EXTERN (meaning it's an ircd.dll API) * dynamic modules now work on win32.
s_conf.c 190 (18 years ago) by adx: * prototypes are now prefixed with either nothing or EXTERN (meaning it's an ircd.dll API) * dynamic modules now work on win32.
ircd_parser.y 190 (18 years ago) by adx: * prototypes are now prefixed with either nothing or EXTERN (meaning it's an ircd.dll API) * dynamic modules now work on win32.
dynlink.c 190 (18 years ago) by adx: * prototypes are now prefixed with either nothing or EXTERN (meaning it's an ircd.dll API) * dynamic modules now work on win32.
client.c 193 (18 years ago) by michael: - Added some asserts to exit_one_client()
send.c 187 (18 years ago) by michael: - Fixed bug in sendto_channel_remote() that would cause multiple copies of the same message to be sent to the uplinked server. That one needs propably to be backported to 7.1.4 and 7.2
s_user.c 158 (18 years ago) by michael: - Fixed bug where we would increase Count.invisi even if invisible_on_connect is off
restart.c 97 (18 years ago) by michael: - Got rid of restart(), cleaned up m_restart() and make it use server_die()
whowas.c 192 (18 years ago) by michael: - Killed count_whowas_memory()
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.
s_serv.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
y.tab.h 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.
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.
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
version.c 77 (18 years ago) by adx: - misc win32 fixes
packet.c 178 (18 years ago) by adx: - somehow it didn't get committed, fixing
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")
channel_mode.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")
ircd_lexer.l 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")
lex.yy.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")
channel.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")
messages.tab 33 (18 years ago) by knight: - svn:keywords
getopt.c 33 (18 years ago) by knight: - svn:keywords
1 directory and 37 files shown

Properties

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