You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.go 622B

12345678910111213141516171819202122
  1. // Copyright (c) 2012-2014 Jeremy Latt
  2. // Copyright (c) 2014-2015 Edmund Huber
  3. // Copyright (c) 2016- Daniel Oaks <daniel@danieloaks.net>
  4. // released under the MIT license
  5. package irc
  6. import "fmt"
  7. const (
  8. // SemVer is the semantic version of Oragono.
  9. SemVer = "0.4.0-unreleased"
  10. )
  11. var (
  12. // Ver is the full version of Oragono, used in responses to clients.
  13. Ver = fmt.Sprintf("oragono-%s", SemVer)
  14. // maxLastArgLength is used to simply cap off the final argument when creating general messages where we need to select a limit.
  15. // for instance, in MONITOR lists, RPL_ISUPPORT lists, etc.
  16. maxLastArgLength = 400
  17. )