MCPcopy Index your code
hub / github.com/RsyncProject/rsync / write_varint30

Function write_varint30

io.h:36–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36static inline void
37write_varint30(int f, int32 x)
38{
39 if (protocol_version < 30)
40 write_int(f, x);
41 else
42 write_varint(f, x);
43}
44
45static inline void
46write_varlong30(int f, int64 x, uchar min_bytes)

Callers 3

send_one_nameFunction · 0.85
send_one_listFunction · 0.85
send_file_entryFunction · 0.85

Calls 2

write_intFunction · 0.85
write_varintFunction · 0.85

Tested by

no test coverage detected