ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/include/client.h
(Generate patch)

Comparing ircd-hybrid/trunk/include/client.h (file contents):
Revision 2292 by michael, Wed Jun 19 10:44:02 2013 UTC vs.
Revision 2345 by michael, Wed Jul 3 18:17:39 2013 UTC

# Line 159 | Line 159
159   #define UMODE_REGONLY      0x00080000 /**< Only registered nicks may PM */
160   #define UMODE_HIDDEN       0x00100000 /**< Operator status is hidden */
161   #define UMODE_OPER         0x00200000 /**< Operator */
162 < #define UMODE_ADMIN        0x00400000 /**< Admin on server */
162 > #define UMODE_ADMIN        0x00400000 /**< Admin on server */
163   #define UMODE_FARCONNECT   0x00800000 /**< Can see remote client connects/exits */
164   #define UMODE_HIDDENHOST   0x01000000 /**< User's host is hidden */
165   #define UMODE_SSL          0x02000000 /**< User is connected via TLS/SSL */
# Line 329 | Line 329 | struct LocalUser
329    time_t       firsttime;  /**< time client was created */
330    time_t       since;      /**< last time we parsed something */
331    time_t       last_knock;    /**< time of last knock */
332 <  time_t       last_join_time;   /**< when this client last
332 >  time_t       last_join_time;   /**< when this client last
333                                      joined a channel */
334 <  time_t       last_leave_time;  /**< when this client last
334 >  time_t       last_leave_time;  /**< when this client last
335                                         * left a channel */
336 <  int          join_leave_count; /**< count of JOIN/LEAVE in less than
336 >  int          join_leave_count; /**< count of JOIN/LEAVE in less than
337                                           MIN_JOIN_LEAVE_TIME seconds */
338 <  int          oper_warn_count_down; /**< warn opers of this possible
338 >  int          oper_warn_count_down; /**< warn opers of this possible
339                                            spambot every time this gets to 0 */
340    time_t       last_caller_id_time;
341    time_t       first_received_message_time;
# Line 410 | Line 410 | struct Client
410                                  if dealing with timestamps */
411    char id[IDLEN + 1];       /**< client ID, unique ID per client */
412    /*
413 <   * client->username is the username from ident or the USER message,
414 <   * If the client is idented the USER message is ignored, otherwise
415 <   * the username part of the USER message is put here prefixed with a
413 >   * client->username is the username from ident or the USER message,
414 >   * If the client is idented the USER message is ignored, otherwise
415 >   * the username part of the USER message is put here prefixed with a
416     * tilde depending on the auth{} block. Once a client has registered,
417     * this field should be considered read-only.
418     */
# Line 426 | Line 426 | struct Client
426    char              host[HOSTLEN + 1];     /* client's hostname */
427  
428    /*
429 <   * client->info for unix clients will normally contain the info from the
429 >   * client->info for unix clients will normally contain the info from the
430     * gcos field in /etc/passwd but anything can go here.
431     */
432    char              info[REALLEN + 1]; /* Free form additional client info */
# Line 436 | Line 436 | struct Client
436     * string, this field should be considered read-only once the connection
437     * has been made. (set in s_bsd.c only)
438     */
439 <  char              sockhost[HOSTIPLEN + 1]; /* This is the host name from the
439 >  char              sockhost[HOSTIPLEN + 1]; /* This is the host name from the
440                                                  socket ip address as string */
441    char             *certfp;
442   };

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)