From af57bc1789e499c7b26805960c0a52328c3a401f Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Fri, 24 Jun 2016 13:10:56 -0500 Subject: [PATCH] comment Deprecation for VoiceReady and UDPReady --- structs.go | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/structs.go b/structs.go index 9bab58f..19a291f 100644 --- a/structs.go +++ b/structs.go @@ -51,13 +51,17 @@ type Session struct { // Exposed but should not be modified by User. // Whether the Data Websocket is ready - DataReady bool + DataReady bool // NOTE: Maye be deprecated soon + + // Status stores the currect status of the websocket connection + // this is being tested, may stay, may go away. + status int32 // Whether the Voice Websocket is ready - VoiceReady bool + VoiceReady bool // NOTE: Deprecated. // Whether the UDP Connection is ready - UDPReady bool + UDPReady bool // NOTE: Deprecated // Stores a mapping of guild id's to VoiceConnections VoiceConnections map[string]*VoiceConnection