ErrVersionNotSupported invalid (too low) protocol version (505).
(id string, ts time.Time)
| 1738 | |
| 1739 | // ErrVersionNotSupported invalid (too low) protocol version (505). |
| 1740 | func ErrVersionNotSupported(id string, ts time.Time) *ServerComMessage { |
| 1741 | return &ServerComMessage{ |
| 1742 | Ctrl: &MsgServerCtrl{ |
| 1743 | Id: id, |
| 1744 | Code: http.StatusHTTPVersionNotSupported, // 505 |
| 1745 | Text: "version not supported", |
| 1746 | Timestamp: ts, |
| 1747 | }, |
| 1748 | Id: id, |
| 1749 | Timestamp: ts, |
| 1750 | } |
| 1751 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…