Changeset 801 for trunk/ithildin/modules/ircd/client.h
- Timestamp:
- 02/12/07 05:52:32 (5 years ago)
- File:
-
- 1 edited
-
trunk/ithildin/modules/ircd/client.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ithildin/modules/ircd/client.h
r787 r801 66 66 67 67 /* this registers a client on the network/server. registering a client 68 * consists of checking it against stage3acls, placing it in a connection68 * consists of checking it against registered acls, placing it in a connection 69 69 * class (for real, not the default) (or dropping it if the class is full), 70 70 * then propogating the user creation across the network, and finally … … 98 98 char *, int *); 99 99 100 uint64_t usermode_request(unsigned char, unsigned char *, int, int, char *); 100 uint64_t usermode_request(unsigned char, unsigned char *, int, int, 101 usermode_func); 101 102 102 103 /* use this function to release a mode if you no longer care about it being set … … 104 105 * had one */ 105 106 void usermode_release(unsigned char); 107 108 /* this function provides a way to update the assigned function for a 109 * usermode */ 110 void usermode_update_func(unsigned char, usermode_func); 106 111 107 112 /* this function returns a mode string from the passed 64bit integer. the … … 147 152 int flags; /* flags for the usermode */ 148 153 uint64_t mask; /* the bitmask for the mode */ 149 msymbol_t *changer;/* the changer function for the mode */154 usermode_func changefunc; /* the changer function for the mode */ 150 155 int sflag; /* send flag (if any) for this mode. */ 151 156 };
Note: See TracChangeset
for help on using the changeset viewer.
