1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- extern int protocol_version;
- static inline int32
- read_varint30(int f)
- {
- if (protocol_version < 30)
- return read_int(f);
- return read_varint(f);
- }
- static inline int64
- read_varlong30(int f, uchar min_bytes)
- {
- if (protocol_version < 30)
- return read_longint(f);
- return read_varlong(f, min_bytes);
- }
- static inline void
- write_varint30(int f, int32 x)
- {
- if (protocol_version < 30)
- write_int(f, x);
- else
- write_varint(f, x);
- }
- static inline void
- write_varlong30(int f, int64 x, uchar min_bytes)
- {
- if (protocol_version < 30)
- write_longint(f, x);
- else
- write_varlong(f, x, min_bytes);
- }
|