ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/modules/m_svsmode.c
Revision 8751 - (view) (annotate) - [select for diffs]
Modified Tue Jan 1 11:06:50 2019 UTC (5 years, 2 months ago) by michael
File length: 5552 byte(s)
Diff to previous 8657
- Update copyright years

Revision 8657 - (view) (annotate) - [select for diffs]
Modified Mon Nov 12 19:02:38 2018 UTC (5 years, 4 months ago) by michael
File length: 5552 byte(s)
Diff to previous 8483
- Make use of the bool data type in some more places

Revision 8483 - (view) (annotate) - [select for diffs]
Modified Wed Apr 4 15:07:19 2018 UTC (5 years, 11 months ago) by michael
File length: 5549 byte(s)
Diff to previous 8394
- Move svstag related code into its own files

Revision 8394 - (view) (annotate) - [select for diffs]
Modified Sun Mar 18 13:13:20 2018 UTC (6 years ago) by michael
File length: 5511 byte(s)
Diff to previous 8372
- Rename attach_conf() -> conf_attach(), detach_conf() -> conf_detach(); clean up documentation

Revision 8372 - (view) (annotate) - [select for diffs]
Modified Fri Mar 9 20:06:45 2018 UTC (6 years ago) by michael
File length: 5511 byte(s)
Diff to previous 8348
- Fixed bug spotted by Erick J. Velez where ircd would not remove RPL_WHOISOPERATOR based svstags when deoppering.

Revision 8348 - (view) (annotate) - [select for diffs]
Modified Sun Mar 4 13:23:49 2018 UTC (6 years ago) by michael
File length: 5438 byte(s)
Diff to previous 8280
- Style corrections

Revision 8280 - (view) (annotate) - [select for diffs]
Modified Tue Feb 20 19:30:33 2018 UTC (6 years, 1 month ago) by michael
File length: 5445 byte(s)
Diff to previous 8209
- Update copyright years

Revision 8209 - (view) (annotate) - [select for diffs]
Modified Sun Apr 16 10:45:01 2017 UTC (6 years, 11 months ago) by michael
File length: 5445 byte(s)
Diff to previous 7925
- Remove UMODE_HIDDENHOST as we don't need a separat mode for that

Revision 7925 - (view) (annotate) - [select for diffs]
Modified Sat Dec 31 13:57:24 2016 UTC (7 years, 2 months ago) by michael
File length: 5451 byte(s)
Diff to previous 7679
- Update copyright years

Revision 7679 - (view) (annotate) - [select for diffs]
Modified Thu Jul 21 16:00:33 2016 UTC (7 years, 8 months ago) by michael
File length: 5451 byte(s)
Diff to previous 7665
- m_svsmode.c: revert -r7665

Revision 7665 - (view) (annotate) - [select for diffs]
Modified Wed Jul 20 12:19:53 2016 UTC (7 years, 8 months ago) by michael
File length: 5440 byte(s)
Diff to previous 7598
- m_svsmode.c: use const

Revision 7598 - (view) (annotate) - [select for diffs]
Modified Mon Jun 13 18:55:15 2016 UTC (7 years, 9 months ago) by michael
File length: 5451 byte(s)
Diff to previous 7329
- Minor cleanup to send_umode() to get rid of the redundant struct Client * pointer

Revision 7329 - (view) (annotate) - [select for diffs]
Modified Thu Feb 18 21:07:50 2016 UTC (8 years, 1 month ago) by michael
File length: 5458 byte(s)
Diff to previous 7007
- Now that we got time_t to work nicely on openbsd with snprintf's conversion specifiers,
  we ran into a similiar issue on Raspbian/ARMv7's time_t which is of signed 32 bit and
  doesn't cope at all with %j. Instead of doing tricks, get rid of time_t everywhere and
  forever and use uintmax_t instead which has at least a 'standardized' conversion specifier
  associated with it.

Revision 7007 - (view) (annotate) - [select for diffs]
Modified Fri Jan 1 00:09:08 2016 UTC (8 years, 2 months ago) by michael
File length: 5465 byte(s)
Diff to previous 6901
- Update copyright years

Revision 6901 - (view) (annotate) - [select for diffs]
Modified Thu Dec 3 21:44:52 2015 UTC (8 years, 3 months ago) by michael
File length: 5465 byte(s)
Diff to previous 6781
- Replaced a rather strange mixture of atoi(), atol(), and strtoul() with strtoimax(). ircd-hybrid should be 2038-safe now

Revision 6781 - (view) (annotate) - [select for diffs]
Modified Sun Nov 15 18:45:53 2015 UTC (8 years, 4 months ago) by michael
File length: 5450 byte(s)
Diff to previous 6775
- Use the %ju conversion specifier for time_t and get rid of these non-portable (unsigned long) casts; replace some uint64_t with uintmax_t

Revision 6775 - (view) (annotate) - [select for diffs]
Modified Fri Nov 13 20:22:58 2015 UTC (8 years, 4 months ago) by michael
File length: 5480 byte(s)
Diff to previous 6714
- Implement ircv3.2 chghost client capability support

Revision 6714 - (view) (annotate) - [select for diffs]
Modified Fri Oct 30 17:26:01 2015 UTC (8 years, 4 months ago) by michael
File length: 5477 byte(s)
Diff to previous 6407
- m_svsmode.c:ms_svsmode(): minor logic fix/cleanup

Revision 6407 - (view) (annotate) - [select for diffs]
Modified Tue Aug 25 19:23:42 2015 UTC (8 years, 7 months ago) by michael
File length: 5473 byte(s)
Diff to previous 6399
- m_svsmode.c:ms_svsmode(): move the 'ts = atol()' assignment right after the find_person()

Revision 6399 - (view) (annotate) - [select for diffs]
Modified Sun Aug 23 16:32:17 2015 UTC (8 years, 7 months ago) by michael
File length: 5477 byte(s)
Diff to previous 5880
- Implement ircv3.1 account-notify extension

Revision 5880 - (view) (annotate) - [select for diffs]
Modified Sun May 3 16:01:42 2015 UTC (8 years, 10 months ago) by michael
File length: 5210 byte(s)
Diff to previous 5863
- Use C99-style initializers in all struct Message items
- Removed MFLG_SLOW
- Removed DUMMY_HANDLER

Revision 5863 - (view) (annotate) - [select for diffs]
Modified Tue Apr 28 12:23:14 2015 UTC (8 years, 11 months ago) by michael
File length: 5064 byte(s)
Diff to previous 5549
- Removed useless zero initializers from the module_entry as suggested by Adam

Revision 5549 - (view) (annotate) - [select for diffs]
Modified Thu Feb 12 15:51:14 2015 UTC (9 years, 1 month ago) by michael
File length: 5152 byte(s)
Diff to previous 5547
- m_svsmode.c: revert to -r5395 because me is stupid

Revision 5547 - (view) (annotate) - [select for diffs]
Modified Thu Feb 12 14:25:58 2015 UTC (9 years, 1 month ago) by michael
File length: 5141 byte(s)
Diff to previous 5393
- m_mode.c, m_svsmode.c, m_svsnick.c: const correctness

Revision 5393 - (view) (annotate) - [select for diffs]
Modified Tue Jan 20 13:42:21 2015 UTC (9 years, 2 months ago) by michael
File length: 5152 byte(s)
Diff to previous 5346
- Minor cleanups and optimizations to usermode handling

Revision 5346 - (view) (annotate) - [select for diffs]
Modified Sun Jan 11 12:41:14 2015 UTC (9 years, 2 months ago) by michael
File length: 5115 byte(s)
Diff to previous 5015
- Update copyright years

Revision 5015 - (view) (annotate) - [select for diffs]
Modified Tue Dec 9 17:53:37 2014 UTC (9 years, 3 months ago) by michael
File length: 5115 byte(s)
Diff to previous 4963
- Removed unused header includes:wq

Revision 4963 - (view) (annotate) - [select for diffs]
Modified Mon Dec 1 13:08:44 2014 UTC (9 years, 3 months ago) by michael
File length: 5135 byte(s)
Diff to previous 4820
- Get rid of NOCAPS

Revision 4820 - (view) (annotate) - [select for diffs]
Modified Sat Nov 1 16:50:43 2014 UTC (9 years, 4 months ago) by michael
File length: 5155 byte(s)
Diff to previous 4816
- Renamed Client::svid to Client::account

Revision 4816 - (view) (annotate) - [select for diffs]
Modified Sat Nov 1 15:29:49 2014 UTC (9 years, 4 months ago) by michael
File length: 5144 byte(s)
Diff to previous 4564
- Renamed variables

Revision 4564 - (view) (annotate) - [select for diffs]
Modified Sun Aug 24 10:24:47 2014 UTC (9 years, 7 months ago) by michael
File length: 5138 byte(s)
Diff to previous 4546
- Update GPL 2 license headers

Revision 4546 - (view) (annotate) - [select for diffs]
Modified Fri Aug 22 08:46:38 2014 UTC (9 years, 7 months ago) by michael
File length: 5134 byte(s)
Diff to previous 4341
- Fixed compile warnings with -Wmissing-field-initializers

Revision 4341 - (view) (annotate) - [select for diffs]
Modified Sat Aug 2 16:53:48 2014 UTC (9 years, 7 months ago) by michael
File length: 5128 byte(s)
Diff to previous 4021
- Renamed structures to meet code conventions

Revision 4021 - (view) (annotate) - [select for diffs]
Modified Fri Jun 20 16:19:28 2014 UTC (9 years, 9 months ago) by michael
File length: 5130 byte(s)
Diff to previous 3562
- Got rid of SEND_UMODES. We now propagate all modes.

Revision 3562 - (view) (annotate) - [select for diffs]
Modified Fri May 16 13:52:10 2014 UTC (9 years, 10 months ago) by michael
File length: 5142 byte(s)
Diff to previous 3480
- m_svsmode:ms_svsmode(): removed legacy code

Revision 3480 - (view) (annotate) - [select for diffs]
Modified Sun May 4 16:49:20 2014 UTC (9 years, 10 months ago) by michael
File length: 5363 byte(s)
Diff to previous 3377
- m_svsmode.c:ms_svsmode(): use pre-decrement just for consistency

Revision 3377 - (view) (annotate) - [select for diffs]
Modified Thu Apr 24 16:15:51 2014 UTC (9 years, 11 months ago) by michael
File length: 5363 byte(s)
Diff to previous 3347
- Create 8.2.x branch

Revision 3347 - (view) (annotate) - [select for diffs]
Modified Sun Apr 20 14:03:06 2014 UTC (9 years, 11 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5363 byte(s)
Diff to previous 3300
- Moved files:
  s_user.c -> user.c
  s_misc.c -> misc.c
  s_serv.c -> server.c

Revision 3300 - (view) (annotate) - [select for diffs]
Modified Sat Apr 12 18:26:22 2014 UTC (9 years, 11 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5365 byte(s)
Diff to previous 3246
- doxygen

Revision 3246 - (view) (annotate) - [select for diffs]
Modified Sun Mar 30 17:37:13 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5386 byte(s)
Diff to previous 3215
- Fixed inconsistent style in several places

Revision 3215 - (view) (annotate) - [select for diffs]
Modified Tue Mar 25 19:23:15 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5385 byte(s)
Diff to previous 3186
- Fixed some comments; cleaned up style here and there

Revision 3186 - (view) (annotate) - [select for diffs]
Modified Thu Mar 20 18:09:34 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5380 byte(s)
Diff to previous 3156
- Get rid of the ID() macro

Revision 3156 - (view) (annotate) - [select for diffs]
Modified Fri Mar 14 19:57:38 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5380 byte(s)
Diff to previous 3135
- Removed client_p pointers from everywhere

Revision 3135 - (view) (annotate) - [select for diffs]
Modified Mon Mar 10 21:11:25 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5566 byte(s)
Diff to previous 3096
- Server now no longer accepts TS5 links

Revision 3096 - (view) (annotate) - [select for diffs]
Modified Sat Mar 1 23:31:45 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5953 byte(s)
Diff to previous 2820
- Applied Adam's "Put the command name in parv[0], not prefix name" patch

Revision 2820 - (view) (annotate) - [select for diffs]
Modified Wed Jan 15 23:10:26 2014 UTC (10 years, 2 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5959 byte(s)
Diff to previous 2511
- Clean up all files in modules/ (fixed indentation, removed whitespaces/tabs)
- Fixed copyright years
- Made module handlers int type for later use

Revision 2511 - (view) (annotate) - [select for diffs]
Modified Sun Oct 27 18:56:53 2013 UTC (10 years, 5 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5938 byte(s)
Diff to previous 2503
- Added usermode +W. Users connected via a webirc gateway get this
  mode set by servers.
- /WHOIS now shows whether a client is connected via a webirc
  gateway

Revision 2503 - (view) (annotate) - [select for diffs]
Modified Sat Oct 26 15:51:36 2013 UTC (10 years, 5 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5880 byte(s)
Diff to previous 2274
- m_svsmode.c: constification

Revision 2274 - (view) (annotate) - [select for diffs]
Modified Tue Jun 18 16:01:57 2013 UTC (10 years, 9 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5874 byte(s)
Diff to previous 2246
- Sort out unused header includes

Revision 2246 - (view) (annotate) - [select for diffs]
Modified Sun Jun 16 10:48:39 2013 UTC (10 years, 9 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5913 byte(s)
Diff to previous 2145
- Add usermode 'S' (client is connecte via SSL/TLS).
  Allows services to keep track of what users are connected via SSL,
  and allows to see ssl-status of remote clients in a /whois.

Revision 2145 - (view) (annotate) - [select for diffs]
Modified Thu May 30 10:57:08 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5839 byte(s)
Diff to previous 2143
- m_svsmode(), user_set_hostmask(): minor cleanups and fixes to previous commit

Revision 2143 - (view) (annotate) - [select for diffs]
Modified Thu May 30 01:12:38 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 6063 byte(s)
Diff to previous 2137
- m_svsmode.c: avoid HostServ floods

Revision 2137 - (view) (annotate) - [select for diffs]
Modified Wed May 29 19:49:27 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5839 byte(s)
Diff to previous 2056
- Finished proper implementation of usermode 'x' (UMODE_HIDDENHOST)
  Only services may set a fakehost via SVSMODE.

Revision 2056 - (view) (annotate) - [select for diffs]
Modified Thu May 16 07:55:16 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5813 byte(s)
Diff to previous 2055
- m_svsmode(): restore ability to change a user's host via SVSMODE +x

Revision 2055 - (view) (annotate) - [select for diffs]
Modified Wed May 15 19:37:57 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5694 byte(s)
Diff to previous 2025
- m_svsmode(): temporarily allow 3 arguments (SVSMODE without a valid TS)

Revision 2025 - (view) (annotate) - [select for diffs]
Modified Sun May 12 18:54:15 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5577 byte(s)
Diff to previous 2022
- m_svsmode(), set_user_mode(): \n, \r, \t aren't treaded specially anymore

Revision 2022 - (view) (annotate) - [select for diffs]
Modified Sun May 12 18:07:07 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5659 byte(s)
Diff to previous 1819
- Remove entering_umode and change_umode callbacks in preparation for the 
  modular usermode subsystem

Revision 1819 - (view) (annotate) - [select for diffs]
Modified Fri Apr 12 11:57:26 2013 UTC (10 years, 11 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5585 byte(s)
Diff to previous 1809
- Removed recently added m_svshost.c. Services may now change the host of a
  specific user via "SVSMODE <timestamp> <target> +x <hostname>"

Revision 1809 - (view) (annotate) - [select for diffs]
Modified Wed Apr 10 16:51:34 2013 UTC (10 years, 11 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5456 byte(s)
Diff to previous 1662
- Forward-port -r1807 [m_svsmode.c: SVSMODE now requires at least 4 arguments]

Revision 1662 - (view) (annotate) - [select for diffs]
Modified Sat Nov 17 20:11:33 2012 UTC (11 years, 4 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5702 byte(s)
Diff to previous 1632
- Fixed inconsistent svn file properties

Revision 1632 - (view) (annotate) - [select for diffs]
Modified Sun Nov 4 15:37:10 2012 UTC (11 years, 4 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5702 byte(s)
Diff to previous 1592
- Initial rewrite of the configuration subsystem

Revision 1592 - (view) (annotate) - [select for diffs]
Modified Sat Oct 27 21:02:32 2012 UTC (11 years, 5 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/m_svsmode.c
File length: 5702 byte(s)
Diff to previous 1569
- Second time's the charm? Moving svnroot/ircd-hybrid-8 to
  svnroot/ircd-hybrid/trunk

Revision 1569 - (view) (annotate) - [select for diffs]
Modified Tue Oct 16 18:46:53 2012 UTC (11 years, 5 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5702 byte(s)
Diff to previous 1559
- Removed remnants of MFLG_UNREG which is no longer needed with the
  current implementation of message handlers

Revision 1559 - (view) (annotate) - [select for diffs]
Modified Sun Oct 14 01:38:28 2012 UTC (11 years, 5 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5715 byte(s)
Diff to previous 1474
- Replaced TimeStamp based services IDs with more flexible account names

Revision 1474 - (view) (annotate) - [select for diffs]
Modified Sun Jul 22 14:44:07 2012 UTC (11 years, 8 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5715 byte(s)
Diff to previous 1309
- removed &localchannels

Revision 1309 - (view) (annotate) - [select for diffs]
Modified Sun Mar 25 11:24:18 2012 UTC (12 years ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5739 byte(s)
Diff to previous 1274
- renaming files:

  ircd_parser.y -> conf_parser.y
  ircd_lexer.l  -> conf_lexer.l
  s_conf.c      -> conf.c
  s_conf.h      -> conf.h
  s_log.c       -> log.c
  s_log.h       -> log.h

Revision 1274 - (view) (annotate) - [select for diffs]
Modified Mon Jan 30 23:41:59 2012 UTC (12 years, 1 month ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5741 byte(s)
Diff to previous 1243
- minor documentation updates and fixes

Revision 1243 - (view) (annotate) - [select for diffs]
Modified Fri Sep 30 10:47:53 2011 UTC (12 years, 6 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5742 byte(s)
Diff to previous 1230
- move content of msg.h, ircd_handler.h and handlers.h into parse.h and
  remove headers accordingly
- killed common.h
- remove m_killhost.c and m_flags.c from contrib/
- sort out unused header includes here and there

Revision 1230 - (view) (annotate) - [select for diffs]
Modified Thu Sep 22 19:41:19 2011 UTC (12 years, 6 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5763 byte(s)
Diff to previous 1221
- cleanup module loader. Make module api more flexible

Revision 1221 - (view) (annotate) - [select for diffs]
Modified Sun Sep 18 10:44:31 2011 UTC (12 years, 6 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5648 byte(s)
Diff to previous 1219
- m_svsnick(), m_svsmode(): remove redundant argument count validation

Revision 1219 - (view) (annotate) - [select for diffs]
Modified Sun Sep 18 09:02:38 2011 UTC (12 years, 6 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5673 byte(s)
Diff to previous 1178
- Start cleaning up macros in client.h. Replace several ClientHasSomeCoolFlag()
with simple HasFlag/HasUMode macros.

Revision 1178 - (view) (annotate) - [select for diffs]
Modified Mon Aug 15 08:11:31 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5652 byte(s)
Diff to previous 1163
- Cleanup and restore older parts of the irc-command parser.
  Gives back ability to specify maximum amount of parameters
  that are processed within a command.

Revision 1163 - (view) (annotate) - [select for diffs]
Modified Wed Aug 10 21:54:01 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5646 byte(s)
Diff to previous 1161
- Properly track invisible count when setting +/-i via SVSMODE

Revision 1161 - (view) (annotate) - [select for diffs]
Modified Wed Aug 10 21:16:43 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5285 byte(s)
Diff to previous 1160
- m_svsmode(): Replace MyClient test with MyConnect.
  find_person already takes care of this.

Revision 1160 - (view) (annotate) - [select for diffs]
Modified Wed Aug 10 21:14:57 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5284 byte(s)
Diff to previous 1159
- set file properties for m_svsmode.c

Revision 1159 - (view) (annotate) - [select for diffs]
Added Wed Aug 10 21:08:18 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/m_svsmode.c
File length: 5337 byte(s)
- Implemented SVSMODE

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