ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/modules/core/m_sjoin.c
Revision 10026 - (view) (annotate) - [select for diffs]
Modified Fri Jan 14 15:11:00 2022 UTC (2 years, 2 months ago) by michael
File length: 17052 byte(s)
Diff to previous 10024 , to selected 6317
- channel.c:channel_demote_members(): rewrite to remove all member flags in a single run. Also members having multiple flags set are now stuffed into the same MODE message (as long as pargs <= MAXMODEPARAMS)

Revision 10024 - (view) (annotate) - [select for diffs]
Modified Sat Jan 1 10:20:46 2022 UTC (2 years, 2 months ago) by michael
File length: 17195 byte(s)
Diff to previous 10016 , to selected 6317
- Bump copyright years

Revision 10016 - (view) (annotate) - [select for diffs]
Modified Tue Sep 28 12:59:50 2021 UTC (2 years, 5 months ago) by michael
File length: 17195 byte(s)
Diff to previous 9858 , to selected 6317
- m_sjoin.c:ms_sjoin(): remove pointless test on 'isnew' which is always false in case of !keep_our_modes

Revision 9858 - (view) (annotate) - [select for diffs]
Modified Fri Jan 1 04:43:42 2021 UTC (3 years, 2 months ago) by michael
File length: 17221 byte(s)
Diff to previous 9597 , to selected 6317
- Bump copyright years

Revision 9597 - (view) (annotate) - [select for diffs]
Modified Sat Sep 5 10:09:36 2020 UTC (3 years, 6 months ago) by michael
File length: 17221 byte(s)
Diff to previous 9547 , to selected 6317
- Style corrections; reformatting

Revision 9547 - (view) (annotate) - [select for diffs]
Modified Sat Jul 18 16:33:47 2020 UTC (3 years, 8 months ago) by michael
File length: 17399 byte(s)
Diff to previous 9468 , to selected 6317
- channel_mode.c:channel_modes(): minor optimization to save potentially redundant member_find_link() calls

Revision 9468 - (view) (annotate) - [select for diffs]
Modified Wed Jul 1 15:12:58 2020 UTC (3 years, 8 months ago) by michael
File length: 17393 byte(s)
Diff to previous 9464 , to selected 6317
- m_join.c:set_final_mode() replace 1/-1 oddness with MODE_ADD/MODE_DEL;  make m_sjoin() use set_final_mode() from m_join.c for now

Revision 9464 - (view) (annotate) - [select for diffs]
Modified Wed Jul 1 11:46:59 2020 UTC (3 years, 8 months ago) by michael
File length: 16991 byte(s)
Diff to previous 9456 , to selected 6317
- m_sjoin.c:remove_ban_list(): replace DLINK_FOREACH_SAFE with a simple while()

Revision 9456 - (view) (annotate) - [select for diffs]
Modified Tue Jun 30 17:33:43 2020 UTC (3 years, 8 months ago) by michael
File length: 17046 byte(s)
Diff to previous 9452 , to selected 6317
- Rename find_channel_link() to member_find_link()

Revision 9452 - (view) (annotate) - [select for diffs]
Modified Tue Jun 30 14:42:20 2020 UTC (3 years, 8 months ago) by michael
File length: 17047 byte(s)
Diff to previous 9449 , to selected 6317
- m_sjoin.c: fixed ages old bug where server name hiding would not work for bmask removal; incorporate server name hiding cleanups from m_join.c

Revision 9449 - (view) (annotate) - [select for diffs]
Modified Tue Jun 30 14:28:37 2020 UTC (3 years, 8 months ago) by michael
File length: 17269 byte(s)
Diff to previous 9434 , to selected 6317
- Move remove_a_mode() from m_join.c to channel.c and rename it to channel_demote_members();  have m_sjoin.c make use of it as well

Revision 9434 - (view) (annotate) - [select for diffs]
Modified Thu Jun 25 12:15:32 2020 UTC (3 years, 9 months ago) by michael
File length: 19558 byte(s)
Diff to previous 9430 , to selected 6317
- Replace remaining occurrences of IsMember with find_channel_link and remove IsMember entirely

Revision 9430 - (view) (annotate) - [select for diffs]
Modified Wed Jun 24 08:36:05 2020 UTC (3 years, 9 months ago) by michael
File length: 19542 byte(s)
Diff to previous 9373 , to selected 6317
- Fixed remaining style issues

Revision 9373 - (view) (annotate) - [select for diffs]
Modified Sat May 9 20:54:26 2020 UTC (3 years, 10 months ago) by michael
File length: 19593 byte(s)
Diff to previous 9288 , to selected 6317
- Each type of command handler now has its own min/max argument count pair;  remove remaining argument checks from all modules

Revision 9288 - (view) (annotate) - [select for diffs]
Modified Sun Feb 23 08:38:34 2020 UTC (4 years, 1 month ago) by michael
File length: 19519 byte(s)
Diff to previous 9266 , to selected 6317
- m_sjoin.c:ms_sjoin(): cleanup usage of 'tstosend'. Just use channel->creation_time instead.

Revision 9266 - (view) (annotate) - [select for diffs]
Modified Wed Feb 12 16:55:29 2020 UTC (4 years, 1 month ago) by michael
File length: 19592 byte(s)
Diff to previous 9233 , to selected 6317
- Move channel invitation related functions to channel_invite.c

Revision 9233 - (view) (annotate) - [select for diffs]
Modified Fri Jan 31 17:31:08 2020 UTC (4 years, 1 month ago) by michael
File length: 19564 byte(s)
Diff to previous 9102 , to selected 6317
- Extbans have been implemented. Main implementation done by Adam for p4.
  Currently supported extbans:

  Matching:

   $a:<account>   Matches users logged into a matching account.
   $c:<channel>   Matches users that are on the given channel. An additional
                  prefix of either @, %, or + can be specified to test for
                  certain channel privileges.
   $o:<class>     Matches IRC operators that have joined a class
                  matching the mask.
   $r:<realname>  Matches users with a matching realname.
   $s:<server>    Matches users that are connected to a server matching the mask.
   $u:<modes>     Matches users having the specified user modes set or not set.
   $z:<certfp>    Matches users having the given TLS certificate fingerprint.

  Acting:

   $j:<banmask>   Prevents matching users from joining the channel.
   $m:<banmask>   Blocks messages from matching users. Users with voice
                  or above are not affected.

Revision 9102 - (view) (annotate) - [select for diffs]
Modified Wed Jan 1 09:58:57 2020 UTC (4 years, 2 months ago) by michael
File length: 19587 byte(s)
Diff to previous 9082 , to selected 6317
- Bump copyright years everywhere

Revision 9082 - (view) (annotate) - [select for diffs]
Modified Sun Oct 13 09:58:37 2019 UTC (4 years, 5 months ago) by michael
File length: 19587 byte(s)
Diff to previous 9078 , to selected 6317
- Rename struct Membership to ChannelMember
- Rename Channel::last_knock to last_knock_time
- Rename Channel::last_invite to last_invite_time
- Rename chptr to channel

Revision 9078 - (view) (annotate) - [select for diffs]
Modified Sat Oct 12 20:15:30 2019 UTC (4 years, 5 months ago) by michael
File length: 19452 byte(s)
Diff to previous 9074 , to selected 6317
- Command handlers are now of type void again

Revision 9074 - (view) (annotate) - [select for diffs]
Modified Sat Oct 5 18:18:22 2019 UTC (4 years, 5 months ago) by michael
File length: 19477 byte(s)
Diff to previous 8787 , to selected 6317
- Renamed 'creationtime' Channel structure member to 'creation_time'

Revision 8787 - (view) (annotate) - [select for diffs]
Modified Wed Jan 16 18:47:10 2019 UTC (5 years, 2 months ago) by michael
File length: 19473 byte(s)
Diff to previous 8785 , to selected 6317
- The 'general::ignore_bogus_ts' configuration option has been deprecated

Revision 8785 - (view) (annotate) - [select for diffs]
Modified Wed Jan 16 17:38:58 2019 UTC (5 years, 2 months ago) by michael
File length: 19885 byte(s)
Diff to previous 8751 , to selected 6317
- m_sjoin.c: use bool

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: 19869 byte(s)
Diff to previous 8723 , to selected 6317
- Update copyright years

Revision 8723 - (view) (annotate) - [select for diffs]
Modified Tue Dec 11 23:02:08 2018 UTC (5 years, 3 months ago) by michael
File length: 19869 byte(s)
Diff to previous 8659 , to selected 6317
- modules: replace MODULE_FLAG_CORE and MODULE_FLAG_NOUNLOAD with dedicated variables;  fixed the ircd from crashing in case reloading a module fails

Revision 8659 - (view) (annotate) - [select for diffs]
Modified Sun Nov 18 12:53:34 2018 UTC (5 years, 4 months ago) by michael
File length: 19897 byte(s)
Diff to previous 8655 , to selected 6317
- Make use of the bool data type in some more places

Revision 8655 - (view) (annotate) - [select for diffs]
Modified Sun Nov 11 20:18:54 2018 UTC (5 years, 4 months ago) by michael
File length: 19869 byte(s)
Diff to previous 8636 , to selected 6317
- Make use of the bool data type in some places

Revision 8636 - (view) (annotate) - [select for diffs]
Modified Sat Nov 3 21:53:30 2018 UTC (5 years, 4 months ago) by michael
File length: 19776 byte(s)
Diff to previous 8633 , to selected 6317
- m_sjoin.c:remove_ban_list(): minor cleanups

Revision 8633 - (view) (annotate) - [select for diffs]
Modified Sat Nov 3 21:24:56 2018 UTC (5 years, 4 months ago) by michael
File length: 19914 byte(s)
Diff to previous 8621 , to selected 6317
- m_join.c, m_sjoin.c: cleanup chaotic (re)use of global variables

Revision 8621 - (view) (annotate) - [select for diffs]
Modified Sat Nov 3 17:46:51 2018 UTC (5 years, 4 months ago) by michael
File length: 19984 byte(s)
Diff to previous 8600 , to selected 6317
- Stylistic changes

Revision 8600 - (view) (annotate) - [select for diffs]
Modified Sun Oct 28 18:12:12 2018 UTC (5 years, 5 months ago) by michael
File length: 19960 byte(s)
Diff to previous 8280 , to selected 6317
- Rename Channel:locmembers to Channel::members_local

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: 19957 byte(s)
Diff to previous 8090 , to selected 6317
- Update copyright years

Revision 8090 - (view) (annotate) - [select for diffs]
Modified Wed Mar 29 12:49:28 2017 UTC (7 years ago) by michael
File length: 19957 byte(s)
Diff to previous 8088 , to selected 6317
- Get rid of chm_registered() and chm_simple_oper()

Revision 8088 - (view) (annotate) - [select for diffs]
Modified Wed Mar 29 12:21:50 2017 UTC (7 years ago) by michael
File length: 19963 byte(s)
Diff to previous 7925 , to selected 6317
- Cleanup channel mode table handling

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: 19848 byte(s)
Diff to previous 7763 , to selected 6317
- Update copyright years

Revision 7763 - (view) (annotate) - [select for diffs]
Modified Thu Oct 6 16:59:51 2016 UTC (7 years, 5 months ago) by michael
File length: 19848 byte(s)
Diff to previous 7761 , to selected 6317
- Get rid of clear_ban_cache_channel() and clear_ban_cache_client(). Use clear_ban_cache_list() instead.

Revision 7761 - (view) (annotate) - [select for diffs]
Modified Thu Oct 6 16:44:27 2016 UTC (7 years, 5 months ago) by michael
File length: 19838 byte(s)
Diff to previous 7552 , to selected 6317
- Get rid of clear_invites_channel() and clear_invites_client(). Use clear_invite_list() instead.

Revision 7552 - (view) (annotate) - [select for diffs]
Modified Wed Apr 27 16:46:55 2016 UTC (7 years, 11 months ago) by michael
File length: 19832 byte(s)
Diff to previous 7356 , to selected 6317
- m_sjoin.c: we're only doing UIDs

Revision 7356 - (view) (annotate) - [select for diffs]
Modified Mon Feb 22 18:59:30 2016 UTC (8 years, 1 month ago) by michael
File length: 19855 byte(s)
Diff to previous 7329 , to selected 6317
- Cleanup more conversion specifiers

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: 19855 byte(s)
Diff to previous 7007 , to selected 6317
- 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: 19870 byte(s)
Diff to previous 6920 , to selected 6317
- Update copyright years

Revision 6920 - (view) (annotate) - [select for diffs]
Modified Thu Dec 10 13:07:22 2015 UTC (8 years, 3 months ago) by michael
File length: 19870 byte(s)
Diff to previous 6902 , to selected 6317
- Removed client->account backwards compatibility hacks for 8.1

Revision 6902 - (view) (annotate) - [select for diffs]
Modified Mon Dec 7 17:42:18 2015 UTC (8 years, 3 months ago) by michael
File length: 19996 byte(s)
Diff to previous 6901 , to selected 6317
- Add CMEMBER_STATUS_FLAGS / CMEMBER_STATUS_FLAGS_LEN and make use of it in some places (replaces some magic values sprinkled in the code)

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: 19946 byte(s)
Diff to previous 6781 , to selected 6317
- 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: 19931 byte(s)
Diff to previous 6760 , to selected 6317
- 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 6760 - (view) (annotate) - [select for diffs]
Modified Fri Nov 13 18:25:53 2015 UTC (8 years, 4 months ago) by michael
File length: 20036 byte(s)
Diff to previous 6374 , to selected 6317
- Merge sendto_channel_local_butone() functionality into sendto_channel_local() and get rid of sendto_channel_local_butone()

Revision 6374 - (view) (annotate) - [select for diffs]
Modified Fri Aug 21 10:01:21 2015 UTC (8 years, 7 months ago) by michael
File length: 19967 byte(s)
Diff to previous 6317
- Rename several functions in channel.c to comply with naming convention

Revision 6317 - (view) (annotate) - [selected]
Modified Wed Aug 5 16:03:09 2015 UTC (8 years, 7 months ago) by michael
File length: 19970 byte(s)
Diff to previous 5880
- Get rid of UMODE_ALL

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: 19956 byte(s)
Diff to previous 5863 , to selected 6317
- 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: 19810 byte(s)
Diff to previous 5851 , to selected 6317
- Removed useless zero initializers from the module_entry as suggested by Adam

Revision 5851 - (view) (annotate) - [select for diffs]
Modified Mon Apr 27 17:54:12 2015 UTC (8 years, 11 months ago) by michael
File length: 19883 byte(s)
Diff to previous 5751 , to selected 6317
- Renamed clear_invites() to clear_invites_channel()
- Added separate clear_invites_client()

Revision 5751 - (view) (annotate) - [select for diffs]
Modified Thu Apr 2 17:27:13 2015 UTC (8 years, 11 months ago) by michael
File length: 19875 byte(s)
Diff to previous 5346 , to selected 6317
- Mostly whitespace changes

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: 19876 byte(s)
Diff to previous 4963 , to selected 6317
- Update copyright years

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: 19876 byte(s)
Diff to previous 4883 , to selected 6317
- Get rid of NOCAPS

Revision 4883 - (view) (annotate) - [select for diffs]
Modified Tue Nov 18 16:22:18 2014 UTC (9 years, 4 months ago) by michael
File length: 19896 byte(s)
Diff to previous 4837 , to selected 6317
- Style corrections; fixed comments

Revision 4837 - (view) (annotate) - [select for diffs]
Modified Sun Nov 2 18:52:26 2014 UTC (9 years, 4 months ago) by michael
File length: 19905 byte(s)
Diff to previous 4820 , to selected 6317
- Renamed clear_ban_cache() to clear_ban_cache_channel() to separate it
  better from the clear_ban_cache_client() function

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: 19897 byte(s)
Diff to previous 4817 , to selected 6317
- Renamed Client::svid to Client::account

Revision 4817 - (view) (annotate) - [select for diffs]
Modified Sat Nov 1 16:05:01 2014 UTC (9 years, 4 months ago) by michael
File length: 19888 byte(s)
Diff to previous 4816 , to selected 6317
- Renamed variables

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: 19876 byte(s)
Diff to previous 4812 , to selected 6317
- Renamed variables

Revision 4812 - (view) (annotate) - [select for diffs]
Modified Sat Nov 1 11:57:38 2014 UTC (9 years, 4 months ago) by michael
File length: 19890 byte(s)
Diff to previous 4809 , to selected 6317
- channel.c, channel.h: added clear_invites() and make use of it
- ms_sjoin.c:ms_sjoin(): clear invites if the introduced channel has lower TS

Revision 4809 - (view) (annotate) - [select for diffs]
Modified Sat Nov 1 11:44:10 2014 UTC (9 years, 4 months ago) by michael
File length: 19863 byte(s)
Diff to previous 4807 , to selected 6317
- m_sjoin.c:ms_sjoin(): moved remove_ban_lis() calls

Revision 4807 - (view) (annotate) - [select for diffs]
Modified Sat Nov 1 11:36:37 2014 UTC (9 years, 4 months ago) by michael
File length: 19899 byte(s)
Diff to previous 4794 , to selected 6317
- m_sjoin.c:ms_sjoin(): from p4: update channel names to match the case of the remote servers channel name on sjoin

Revision 4794 - (view) (annotate) - [select for diffs]
Modified Tue Oct 28 13:09:31 2014 UTC (9 years, 5 months ago) by michael
File length: 19767 byte(s)
Diff to previous 4793 , to selected 6317
- Removed pointless test for UMODE_DEAF in both sendto_channel_local() and
  sendto_channel_local_butone()

Revision 4793 - (view) (annotate) - [select for diffs]
Modified Tue Oct 28 12:47:20 2014 UTC (9 years, 5 months ago) by michael
File length: 19922 byte(s)
Diff to previous 4617 , to selected 6317
- Added support for the "extended-join" client capability

Revision 4617 - (view) (annotate) - [select for diffs]
Modified Sun Sep 7 13:00:55 2014 UTC (9 years, 6 months ago) by michael
File length: 19490 byte(s)
Diff to previous 4580 , to selected 6317
- Renamed Channel::chname to Channel::name

Revision 4580 - (view) (annotate) - [select for diffs]
Modified Mon Aug 25 10:31:29 2014 UTC (9 years, 7 months ago) by michael
File length: 19526 byte(s)
Diff to previous 4564 , to selected 6317
- Fixed misspellings

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: 19525 byte(s)
Diff to previous 4546 , to selected 6317
- 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: 19521 byte(s)
Diff to previous 4341 , to selected 6317
- 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: 19515 byte(s)
Diff to previous 4299 , to selected 6317
- Renamed structures to meet code conventions

Revision 4299 - (view) (annotate) - [select for diffs]
Modified Sun Jul 20 13:51:28 2014 UTC (9 years, 8 months ago) by michael
File length: 19517 byte(s)
Diff to previous 3940 , to selected 6317
- Fixed typos all over the place

Revision 3940 - (view) (annotate) - [select for diffs]
Modified Tue Jun 10 19:27:34 2014 UTC (9 years, 9 months ago) by michael
File length: 19509 byte(s)
Diff to previous 3752 , to selected 6317
- Renamed set_channel_topic() to channel_set_topic()

Revision 3752 - (view) (annotate) - [select for diffs]
Modified Sun Jun 1 18:11:22 2014 UTC (9 years, 9 months ago) by michael
File length: 19509 byte(s)
Diff to previous 3751 , to selected 6317
- More ms_sjoin() cleanups

Revision 3751 - (view) (annotate) - [select for diffs]
Modified Sun Jun 1 17:57:48 2014 UTC (9 years, 9 months ago) by michael
File length: 20158 byte(s)
Diff to previous 3748 , to selected 6317
- m_sjoin.c: style corrections

Revision 3748 - (view) (annotate) - [select for diffs]
Modified Sun Jun 1 17:41:15 2014 UTC (9 years, 9 months ago) by michael
File length: 20086 byte(s)
Diff to previous 3725 , to selected 6317
- m_sjoin.c:remove_ban_list(): replaced sprintf() with snprintf()

Revision 3725 - (view) (annotate) - [select for diffs]
Modified Sat May 31 16:29:38 2014 UTC (9 years, 9 months ago) by michael
File length: 20064 byte(s)
Diff to previous 3694 , to selected 6317
- Halfops are now part of the ircd core and enabled by default

Revision 3694 - (view) (annotate) - [select for diffs]
Modified Thu May 29 19:37:00 2014 UTC (9 years, 10 months ago) by michael
File length: 20148 byte(s)
Diff to previous 3626 , to selected 6317
- Removed CHFL_DEOPPED flags which is no longer needed with TS6

Revision 3626 - (view) (annotate) - [select for diffs]
Modified Thu May 22 20:12:58 2014 UTC (9 years, 10 months ago) by michael
File length: 20241 byte(s)
Diff to previous 3620 , to selected 6317
- m_sjoin.c:ms_sjoin(): let handle_command() test for the right amount
  of parameters passed to SJOIN

Revision 3620 - (view) (annotate) - [select for diffs]
Modified Thu May 22 19:30:59 2014 UTC (9 years, 10 months ago) by michael
File length: 20253 byte(s)
Diff to previous 3586 , to selected 6317
- m_sjoin.c:ms_sjoin(): hardened test to make sure SJOINs are really
  only processed if sent by a server

Revision 3586 - (view) (annotate) - [select for diffs]
Modified Sun May 18 14:31:05 2014 UTC (9 years, 10 months ago) by michael
File length: 20252 byte(s)
Diff to previous 3377 , to selected 6317
- m_sjoin.c:ms_sjoin(): removed faulty assert

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: 20284 byte(s)
Diff to previous 3347 , to selected 6317
- 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/core/m_sjoin.c
File length: 20284 byte(s)
Diff to previous 3334 , to selected 6317
- Moved files:
  s_user.c -> user.c
  s_misc.c -> misc.c
  s_serv.c -> server.c

Revision 3334 - (view) (annotate) - [select for diffs]
Modified Wed Apr 16 16:42:54 2014 UTC (9 years, 11 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 20286 byte(s)
Diff to previous 3246 , to selected 6317
- Replaced strcpy() with strlcpy() in some places

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/core/m_sjoin.c
File length: 20267 byte(s)
Diff to previous 3240 , to selected 6317
- Fixed inconsistent style in several places

Revision 3240 - (view) (annotate) - [select for diffs]
Modified Sun Mar 30 13:56:44 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 20307 byte(s)
Diff to previous 3192 , to selected 6317
- m_sjoin.c:ms_sjoin(): removed unused variable

Revision 3192 - (view) (annotate) - [select for diffs]
Modified Sun Mar 23 19:46:39 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 20328 byte(s)
Diff to previous 3186 , to selected 6317
- Fixed compile error in ms_sid()
- Cleaned up find_chasing(). Removed useless third 'chasing' argument.

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/core/m_sjoin.c
File length: 20334 byte(s)
Diff to previous 3169 , to selected 6317
- Get rid of the ID() macro

Revision 3169 - (view) (annotate) - [select for diffs]
Modified Sun Mar 16 09:55:04 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 20334 byte(s)
Diff to previous 3162 , to selected 6317
- ms_join(), ms_sjoin(): made some server notices more descriptive

Revision 3162 - (view) (annotate) - [select for diffs]
Modified Sat Mar 15 19:43:39 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 20304 byte(s)
Diff to previous 3156 , to selected 6317
- ms_join(), ms_sjoin(): made some server notices more descriptive

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/core/m_sjoin.c
File length: 20272 byte(s)
Diff to previous 3136 , to selected 6317
- Removed client_p pointers from everywhere

Revision 3136 - (view) (annotate) - [select for diffs]
Modified Tue Mar 11 18:24:03 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 20313 byte(s)
Diff to previous 3135 , to selected 6317
- Various fixes to previous ts5 removal changes

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/core/m_sjoin.c
File length: 20437 byte(s)
Diff to previous 3120 , to selected 6317
- Server now no longer accepts TS5 links

Revision 3120 - (view) (annotate) - [select for diffs]
Modified Fri Mar 7 21:52:54 2014 UTC (10 years ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21921 byte(s)
Diff to previous 3041 , to selected 6317
- Missed some of the parv[0] removal changes. Fixed.

Revision 3041 - (view) (annotate) - [select for diffs]
Modified Tue Feb 25 20:42:13 2014 UTC (10 years, 1 month ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21920 byte(s)
Diff to previous 2820 , to selected 6317
- ms_bmask(), remove_ban_list(): removed capability tests for CAP_IE and CAP_EX
  as +I and +e are mandatory for quite a while now

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/core/m_sjoin.c
File length: 22033 byte(s)
Diff to previous 2475 , to selected 6317
- Clean up all files in modules/ (fixed indentation, removed whitespaces/tabs)
- Fixed copyright years
- Made module handlers int type for later use

Revision 2475 - (view) (annotate) - [select for diffs]
Modified Fri Oct 11 19:40:43 2013 UTC (10 years, 5 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21475 byte(s)
Diff to previous 2296 , to selected 6317
- find_person(): fixed naming convention
- find_chasing(): reduced required arguments

Revision 2296 - (view) (annotate) - [select for diffs]
Modified Wed Jun 19 11:19:22 2013 UTC (10 years, 9 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21485 byte(s)
Diff to previous 1954 , to selected 6317
- Rename Ban::username structure member to Ban::user

Revision 1954 - (view) (annotate) - [select for diffs]
Modified Mon May 6 18:51:19 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21489 byte(s)
Diff to previous 1937 , to selected 6317
- Implemented channel mode +M. Clients that haven't identified their
  name with NickServ may not speak in a channel that has this mode set

Revision 1937 - (view) (annotate) - [select for diffs]
Modified Sat May 4 20:54:13 2013 UTC (10 years, 10 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21424 byte(s)
Diff to previous 1793 , to selected 6317
-  Implemented channel mode +c. Known from other ircds, this mode basically
   prevents users from sending messages including control codes to a channel
   that has this mode set

Revision 1793 - (view) (annotate) - [select for diffs]
Modified Sun Mar 31 14:06:08 2013 UTC (10 years, 11 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21359 byte(s)
Diff to previous 1751 , to selected 6317
- Replaced all occurrences of ircsprintf with sprintf/snprintf
  and killed sprintf_irc.(c|h)

Revision 1751 - (view) (annotate) - [select for diffs]
Modified Wed Jan 16 18:30:52 2013 UTC (11 years, 2 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21342 byte(s)
Diff to previous 1734 , to selected 6317
- Forward-port -r1750 [IMPORTANT: nick and topic lengths are now configurable
  via ircd.conf. A max_nick_length, as well as a max_topic_length configuration
  option can now be found in the serverinfo{} block]
- OpenSSL 0.9.8s and higher is now required in order to enable ssl support

Revision 1734 - (view) (annotate) - [select for diffs]
Modified Fri Jan 11 12:59:24 2013 UTC (11 years, 2 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21339 byte(s)
Diff to previous 1618 , to selected 6317
- Add support for "away-notify" client capability

Revision 1618 - (view) (annotate) - [select for diffs]
Modified Tue Oct 30 21:04:38 2012 UTC (11 years, 4 months ago) by michael
Original Path: ircd-hybrid/trunk/modules/core/m_sjoin.c
File length: 21038 byte(s)
Diff to previous 1592 , to selected 6317
- Made m_globops() and ms_globops() use sendto_realops_flags()
- Added message-type parameter to sendto_realops_flags() which can be one of
  SEND_NOTICE, SEND_GLOBAL, SEND_LOCOPS
- Forward-port -r1617

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/core/m_sjoin.c
File length: 20986 byte(s)
Diff to previous 1474 , to selected 6317
- Second time's the charm? Moving svnroot/ircd-hybrid-8 to
  svnroot/ircd-hybrid/trunk

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/core/m_sjoin.c
File length: 20986 byte(s)
Diff to previous 1309 , to selected 6317
- 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/core/m_sjoin.c
File length: 21099 byte(s)
Diff to previous 1243 , to selected 6317
- 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 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/core/m_sjoin.c
File length: 21101 byte(s)
Diff to previous 1230 , to selected 6317
- 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/core/m_sjoin.c
File length: 21163 byte(s)
Diff to previous 1203 , to selected 6317
- cleanup module loader. Make module api more flexible

Revision 1203 - (view) (annotate) - [select for diffs]
Modified Tue Aug 23 20:06:08 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/core/m_sjoin.c
File length: 21030 byte(s)
Diff to previous 1178 , to selected 6317
- make channel::topic and channel::topic_info fixed-size arrays

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/core/m_sjoin.c
File length: 21060 byte(s)
Diff to previous 1175 , to selected 6317
- 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 1175 - (view) (annotate) - [select for diffs]
Modified Sun Aug 14 10:47:48 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/core/m_sjoin.c
File length: 21054 byte(s)
Diff to previous 1167 , to selected 6317
- several fixes to services compatibility mode

Revision 1167 - (view) (annotate) - [select for diffs]
Modified Thu Aug 11 20:13:38 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/core/m_sjoin.c
File length: 21400 byte(s)
Diff to previous 1156 , to selected 6317
- Improve services support
- Add channelmode +r

Revision 1156 - (view) (annotate) - [select for diffs]
Modified Tue Aug 9 20:29:20 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-8/modules/core/m_sjoin.c
File length: 21303 byte(s)
Diff to previous 1155 , to selected 6317
- create ircd-hybrid-8 "branch"

Revision 1155 - (view) (annotate) - [select for diffs]
Modified Tue Aug 9 20:27:45 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid/modules/core/m_sjoin.c
File length: 21303 byte(s)
Diff to previous 1150 , to selected 6317
- recreate "trunk"

Revision 1150 - (view) (annotate) - [select for diffs]
Modified Wed Aug 3 01:09:49 2011 UTC (12 years, 7 months ago) by michael
Original Path: ircd-hybrid-7.3/modules/core/m_sjoin.c
File length: 21303 byte(s)
Diff to previous 1121 , to selected 6317
- add new channel modes O and S

Revision 1121 - (view) (annotate) - [select for diffs]
Modified Sun Jan 9 11:03:03 2011 UTC (13 years, 2 months ago) by michael
Original Path: ircd-hybrid-7.3/modules/core/m_sjoin.c
File length: 21114 byte(s)
Diff to previous 1029 , to selected 6317
- removed all instances of STATIC_MODULES since we don't have
  static modules anymore
- removed m_mkpasswd module from contrib

Revision 1029 - (view) (annotate) - [select for diffs]
Modified Sun Nov 8 13:10:50 2009 UTC (14 years, 4 months ago) by michael
Original Path: ircd-hybrid-7.3/modules/core/m_sjoin.c
File length: 21144 byte(s)
Diff to previous 1028 , to selected 6317
- branch off trunk to create 7.3 branch
Revision 1028 - (view) (annotate) - [select for diffs]
Modified Sun Nov 8 13:03:38 2009 UTC (14 years, 4 months ago) by michael
Original Path: ircd-hybrid/modules/core/m_sjoin.c
File length: 21144 byte(s)
Diff to previous 1011 , to selected 6317
- move ircd-hybrid-7.2 to trunk

Revision 1011 - (view) (annotate) - [select for diffs]
Modified Fri Sep 18 10:14:09 2009 UTC (14 years, 6 months ago) by michael
Original Path: ircd-hybrid-7.2/modules/core/m_sjoin.c
File length: 21144 byte(s)
Diff to previous 885 , to selected 6317
- move list manipulation routines from tools.c to list.c
- mem_frob() goes to memory.c
- sort out redundant/unneeded header includes

Revision 885 - (view) (annotate) - [select for diffs]
Modified Wed Oct 31 18:09:24 2007 UTC (16 years, 5 months ago) by michael
Original Path: ircd-hybrid-7.2/modules/core/m_sjoin.c
File length: 21163 byte(s)
Diff to previous 873 , to selected 6317
- Removed LazyLinks in 7.2 to stop people from asking why we keep
  broken code for half a decade. LL will be implemented in a smarter
  fashion in due time

Revision 873 - (view) (annotate) - [select for diffs]
Modified Tue Oct 23 11:02:09 2007 UTC (16 years, 5 months ago) by michael
Original Path: ircd-hybrid-7.2/modules/core/m_sjoin.c
File length: 22582 byte(s)
Diff to previous 632 , to selected 6317
- fixed longstanding topic desync bug during netbursts, which has been
  reported by several people. We now basically do what ircu does, i.e.
  unset topics set by netriders

Revision 632 - (view) (annotate) - [select for diffs]
Modified Thu Jun 1 10:53:00 2006 UTC (17 years, 10 months ago) by michael
Original Path: ircd-hybrid-7.2/modules/core/m_sjoin.c
File length: 22222 byte(s)
Diff to previous 34 , to selected 6317
- Added channel::disable_fake_channels which disallows creation of channels
  that have ascii 2, 3, 31 and 160 in their names.
- Minor improvements and cleanups to channel name validation routines
  backported from 7.3

Revision 34 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 21:05:51 2005 UTC (18 years, 5 months ago) by lusky
Original Path: ircd-hybrid-7.2/modules/core/m_sjoin.c
File length: 22040 byte(s)
Diff to previous 33 , to selected 6317
create 7.2 branch, we can move/rename it as needed.


Revision 33 - (view) (annotate) - [select for diffs]
Modified Sun Oct 2 20:50:00 2005 UTC (18 years, 5 months ago) by knight
Original Path: ircd-hybrid/modules/core/m_sjoin.c
File length: 22040 byte(s)
Diff to previous 32 , to selected 6317
- 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
Original Path: ircd-hybrid/modules/core/m_sjoin.c
File length: 22040 byte(s)
Diff to previous 31 , to selected 6317
- 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
Original Path: ircd-hybrid/modules/core/m_sjoin.c
File length: 22040 byte(s)
Diff to previous 30 , to selected 6317
- 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
Original Path: ircd-hybrid/modules/core/m_sjoin.c
File length: 22100 byte(s)
Diff to selected 6317
- imported sources
- can be moved later according to the directory/branching scheme,
  but we need the svn up

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