]> git.r.bdr.sh - rbdr/mobius/blame_incremental - hotline/transaction_handlers.go
Fix panic on empty news path
[rbdr/mobius] / hotline / transaction_handlers.go
... / ...
CommitLineData
1package hotline
2
3// HandlerFunc is the signature of a func to handle a Hotline transaction.
4type HandlerFunc func(*ClientConn, *Transaction) []Transaction
5
6func (s *Server) HandleFunc(tranType [2]byte, handler HandlerFunc) {
7 s.handlers[tranType] = handler
8}
9
10// The total size of a chat message data field is 8192 bytes.
11const LimitChatMsg = 8192