Version represents a protocol version. It consist of Major and Minor version codes, packed into a single 16-bit word
| 21 | // of Major and Minor version codes, packed into a single |
| 22 | // 16-bit word |
| 23 | type Version uint16 |
| 24 | |
| 25 | // DefaultVersion is the default IPP version (2.0 for now) |
| 26 | const DefaultVersion Version = 0x0200 |
no outgoing calls
no test coverage detected