about summary refs log tree commit diff
path: root/.env.example
blob: 2f2fca79dc11151b4880cb619cddcc60b1e1992b (plain)
1
BOT_TOKEN="12345678910"
t .si { color: #87CEEB } /* Literal.String.Interpol */ .highlight .sx { color: #87CEEB } /* Literal.String.Other */ .highlight .sr { color: #87CEEB } /* Literal.String.Regex */ .highlight .s1 { color: #87CEEB } /* Literal.String.Single */ .highlight .ss { color: #87CEEB } /* Literal.String.Symbol */ .highlight .bp { color: #DDD } /* Name.Builtin.Pseudo */ .highlight .fm { color: #FF0 } /* Name.Function.Magic */ .highlight .vc { color: #EEDD82 } /* Name.Variable.Class */ .highlight .vg { color: #EEDD82 } /* Name.Variable.Global */ .highlight .vi { color: #EEDD82 } /* Name.Variable.Instance */ .highlight .vm { color: #EEDD82 } /* Name.Variable.Magic */ .highlight .il { color: #F0F } /* Literal.Number.Integer.Long */
package gateway

// REF: https://discord.com/developers/docs/topics/opcodes-and-status-codes#gateway-gateway-close-event-codes
const (
	// Reconnect when receiving these.
	CloseUnknownError         = 4000 // We're not sure what went wrong. Try reconnecting?
	CloseUnkownOpcode         = 4001 // You sent an invalid Gateway opcode or an invalid payload for an opcode. Don't do that!
	CloseDecodeError          = 4002 // You sent an invalid payload to us. Don't do that!
	CloseNotAuthenticated     = 4003 // You sent us a payload prior to identifying.
	CloseAlreadyAuthenticated = 4005 // You sent more than one identify payload. Don't do that!
	CloseInvalidSeq           = 4007 // The sequence sent when resuming the session was invalid. Reconnect and start a new session.
	CloseRateLimited          = 4008 // Woah nelly! You're sending payloads to us too quickly. Slow it down! You will be disconnected on receiving this.
	CloseSessionTimedOut      = 4009 // Your session timed out. Reconnect and start a new one.

	// Don't attempt to reconnect on any of the following.
	CloseAuthenticationFailed = 4004 // The account token sent with your identify payload is incorrect.
	CloseInvalidShard         = 4010 // You sent us an invalid shard when identifying.
	CloseShardingRequired     = 4011 // The session would have handled too many guilds - you are required to shard your connection in order to connect.
	CloseInvalidAPIVersion    = 4012 // You sent an invalid version for the gateway.
	CloseInvalidIntents       = 4013 // You sent an invalid intent for a Gateway Intent. You may have incorrectly calculated the bitwise value.
	CloseDisallowedIntents    = 4014 // You sent a disallowed intent for a Gateway Intent. You may have tried to specify an intent that you have not enabled or are not approved for.
)