您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314
  1. // Copyright (c) 2012-2014 Jeremy Latt
  2. // Copyright (c) 2014-2015 Edmund Huber
  3. // Copyright (c) 2016-2017 Daniel Oaks <daniel@danieloaks.net>
  4. // released under the MIT license
  5. package irc
  6. const (
  7. // maxLastArgLength is used to simply cap off the final argument when creating general messages where we need to select a limit.
  8. // for instance, in MONITOR lists, RPL_ISUPPORT lists, etc.
  9. maxLastArgLength = 400
  10. // maxTargets is the maximum number of targets for PRIVMSG and NOTICE.
  11. maxTargets = 4
  12. )