MCPcopy Create free account
hub / github.com/git/git / read_request

Function read_request

http-backend.c:376–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

374}
375
376static ssize_t read_request(int fd, unsigned char **out, ssize_t req_len)
377{
378 if (req_len < 0)
379 return read_request_eof(fd, out);
380 else
381 return read_request_fixed_len(fd, req_len, out);
382}
383
384static void inflate_request(const char *prog_name, int out, int buffer_input, ssize_t req_len)
385{

Callers 2

inflate_requestFunction · 0.70
copy_requestFunction · 0.70

Calls 2

read_request_eofFunction · 0.85
read_request_fixed_lenFunction · 0.85

Tested by

no test coverage detected