ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/include/client.h
Revision 502 - (view) (annotate) - [select for diffs]
Modified Fri Mar 3 19:49:25 2006 UTC (18 years ago) by michael
File length: 24852 byte(s)
Diff to previous 458 , to selected 69
- Implemented CAP command handler based uppon ircu's m_cap()
- Added somewhat outdated draft-mitchell-irc-capabilities-01.txt until
  I get the latest version from kev.
- Added "multi-prefix" cap so clients supporting "multi-prefix"
  may recieve multi prefixed NAMES replies, e.g. @%+nick1 @+nick2 ..
- Fixed "make clean" for src/conf/

Revision 458 - (view) (annotate) - [select for diffs]
Modified Sun Feb 12 20:45:14 2006 UTC (18 years, 1 month ago) by michael
File length: 24527 byte(s)
Diff to previous 398 , to selected 69
- Small changes so register_local_user() only takes 2 parameters instead of 4

Revision 398 - (view) (annotate) - [select for diffs]
Modified Tue Feb 7 12:00:21 2006 UTC (18 years, 1 month ago) by michael
File length: 24544 byte(s)
Diff to previous 315 , to selected 69
- 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 315 - (view) (annotate) - [select for diffs]
Modified Fri Dec 23 11:56:34 2005 UTC (18 years, 3 months ago) by michael
File length: 24876 byte(s)
Diff to previous 290 , to selected 69
- Moved 'invited' dlink_list to LocalUser struct which will save
  some 1.3mb of ram on a typical efnet server.

Revision 290 - (view) (annotate) - [select for diffs]
Modified Sun Dec 4 13:31:27 2005 UTC (18 years, 3 months ago) by michael
File length: 24987 byte(s)
Diff to previous 284 , to selected 69
- Moved has_wildcards() from m_list.c to match.c and re-use it
  in some other places.

Revision 284 - (view) (annotate) - [select for diffs]
Modified Sat Dec 3 09:54:52 2005 UTC (18 years, 3 months ago) by michael
File length: 25047 byte(s)
Diff to previous 283 , to selected 69
- Killed 'flood_noticed' int in LocalUser struct

Revision 283 - (view) (annotate) - [select for diffs]
Modified Sat Dec 3 09:33:51 2005 UTC (18 years, 3 months ago) by michael
File length: 24787 byte(s)
Diff to previous 249 , to selected 69
- Fixed missleading comment about LocalUser.last in LocalUser struct

Revision 249 - (view) (annotate) - [select for diffs]
Modified Thu Nov 10 13:41:31 2005 UTC (18 years, 4 months ago) by michael
File length: 24765 byte(s)
Diff to previous 235 , to selected 69
- Moved serial to LocalUser part

Revision 235 - (view) (annotate) - [select for diffs]
Modified Sat Nov 5 11:31:51 2005 UTC (18 years, 4 months ago) by michael
File length: 24765 byte(s)
Diff to previous 232 , to selected 69
- Fixed and cleaned up new acceptcode, e.g fix memory leaks,
  don't allow wildcards in a mask when removing accepts, don't
  allow redundant masks etc.

Revision 232 - (view) (annotate) - [select for diffs]
Modified Sat Nov 5 06:05:06 2005 UTC (18 years, 4 months ago) by db
File length: 24660 byte(s)
Diff to previous 213 , to selected 69
- This commits the n!u@h accept code
  I'll tidy it up more later.


Revision 213 - (view) (annotate) - [select for diffs]
Modified Thu Nov 3 11:13:14 2005 UTC (18 years, 4 months ago) by michael
File length: 24826 byte(s)
Diff to previous 191 , to selected 69
- First preparation for adding WATCH support

Revision 191 - (view) (annotate) - [select for diffs]
Modified Tue Oct 25 13:18:44 2005 UTC (18 years, 5 months ago) by michael
File length: 24703 byte(s)
Diff to previous 190 , to selected 69
- Rewrote whowas.c to use linked list routines from tools.c

Revision 190 - (view) (annotate) - [select for diffs]
Modified Sun Oct 23 22:06:17 2005 UTC (18 years, 5 months ago) by adx
File length: 24707 byte(s)
Diff to previous 162 , to selected 69
* prototypes are now prefixed with either nothing or EXTERN
  (meaning it's an ircd.dll API)
* dynamic modules now work on win32.
Revision 162 - (view) (annotate) - [select for diffs]
Modified Thu Oct 20 10:34:50 2005 UTC (18 years, 5 months ago) by michael
File length: 24741 byte(s)
Diff to previous 129 , to selected 69
- Removed LocalUser.port

Revision 129 - (view) (annotate) - [select for diffs]
Modified Fri Oct 14 20:27:45 2005 UTC (18 years, 5 months ago) by michael
File length: 24808 byte(s)
Diff to previous 128 , to selected 69
- Don't do any client/oper conf attach at all if any possible

Revision 128 - (view) (annotate) - [select for diffs]
Modified Fri Oct 14 19:29:26 2005 UTC (18 years, 5 months ago) by db
File length: 24888 byte(s)
Diff to previous 126 , to selected 69
- still need a temporary copy of the client auth block
  for much the same reasons as a copy of the passwd is needed.
- need a copy of the oper conf for get_oper_name() so reuse no longer
  needed temporary spot for client auth block


Revision 126 - (view) (annotate) - [select for diffs]
Modified Fri Oct 14 02:41:46 2005 UTC (18 years, 5 months ago) by db
File length: 24876 byte(s)
Diff to previous 101 , to selected 69
- 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.


Revision 101 - (view) (annotate) - [select for diffs]
Modified Mon Oct 10 03:52:14 2005 UTC (18 years, 5 months ago) by db
File length: 24816 byte(s)
Diff to previous 98 , to selected 69
- First pass at s_conf.c cleanup for attach clients
- attach_conf() is gone replaced with attach_iline()
  Clients/servers have one single I line "attached", i.e. the confs
  list is gone.
- Add attach_leaf_hub()
  Add a leaf or hub mask to the given server, ->serv must exist
  since there can be a list of hub masks and leaf masks, this continues
  to be a dlink list
- Removed redundant find_conf_exact()
  This function can be replaced in all cases with find_exact_name_conf()
  notably because all find_conf_exact did differently was count whether
  an oper conf would cause an already connected client to exceed class limits.
- oper_up() now takes an extra conf pointer pointing to the found
  oper conf, the oper flags are set in the client->iline as necessary
  in oper_up()
- Cleaned up more prototypes that should have been moved from s_conf.h
  to parse_aline.h notably. find_kill() and find_gkill()
- m_stats.c needs more cleanup since memory in attached "confs" is now
  not counted. This should be replaced with iline memory count and
  hub/leaf confs memory count.
  

Revision 98 - (view) (annotate) - [select for diffs]
Modified Sun Oct 9 10:15:07 2005 UTC (18 years, 5 months ago) by michael
File length: 24766 byte(s)
Diff to previous 69
- Moved llname to LocalUser struct

Revision 69 - (view) (annotate) - [selected]
Modified Tue Oct 4 16:09:51 2005 UTC (18 years, 5 months ago) by adx
File length: 24815 byte(s)
Diff to previous 68
- 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")


Revision 68 - (view) (annotate) - [select for diffs]
Modified Tue Oct 4 00:44:29 2005 UTC (18 years, 5 months ago) by adx
File length: 24893 byte(s)
Diff to previous 65 , to selected 69
- removed last references to the ircd core, libio is independent now
- to do: split headers

Revision 65 - (view) (annotate) - [select for diffs]
Modified Mon Oct 3 23:33:16 2005 UTC (18 years, 5 months ago) by adx
File length: 24921 byte(s)
Diff to previous 33 , to selected 69
- removed external references from libio/misc
- imported s_misc.c to libio, moved CurrentTime there

Revision 33 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 20:50:00 2005 UTC (18 years, 5 months ago) by knight
File length: 24796 byte(s)
Diff to previous 32 , to selected 69
- svn:keywords

Revision 32 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 20:41:23 2005 UTC (18 years, 5 months ago) by knight
File length: 24796 byte(s)
Diff to previous 31 , to selected 69
- svn:keywords

Revision 31 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 20:34:05 2005 UTC (18 years, 5 months ago) by knight
File length: 24796 byte(s)
Diff to previous 30 , to selected 69
- Fix svn:keywords

Revision 30 - (view) (annotate) - [select for diffs]
Added Sun Oct 2 20:03:27 2005 UTC (18 years, 5 months ago) by adx
File length: 24843 byte(s)
Diff to selected 69
- imported sources
- can be moved later according to the directory/branching scheme,
  but we need the svn up

(Current path doesn't exist after revision 1586)

Convenience Links

Links to HEAD: (view) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a