diff options
Diffstat (limited to 'src/Network')
-rw-r--r-- | src/Network/Tox/Crypto/Transport.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Network/Tox/Crypto/Transport.hs b/src/Network/Tox/Crypto/Transport.hs index 40288502..141ef792 100644 --- a/src/Network/Tox/Crypto/Transport.hs +++ b/src/Network/Tox/Crypto/Transport.hs | |||
@@ -204,9 +204,9 @@ instance Serialize CryptoData where | |||
204 | -- | 204 | -- |
205 | -- The Enum instance on 'UserStatus' is not arbitrary. It corresponds | 205 | -- The Enum instance on 'UserStatus' is not arbitrary. It corresponds |
206 | -- to on-the-wire id numbers. | 206 | -- to on-the-wire id numbers. |
207 | data UserStatus = Online | Away | Busy deriving (Show,Eq,Ord,Enum) | 207 | data UserStatus = Online | Away | Busy deriving (Show,Read,Eq,Ord,Enum) |
208 | 208 | ||
209 | data TypingStatus = NotTyping | Typing deriving (Show,Eq,Ord,Enum) | 209 | data TypingStatus = NotTyping | Typing deriving (Show,Read,Eq,Ord,Enum) |
210 | 210 | ||
211 | data CryptoMessage | 211 | data CryptoMessage |
212 | = OneByte { msgID :: MessageID } | 212 | = OneByte { msgID :: MessageID } |