MCPcopy Create free account
hub / github.com/RsyncProject/rsync / send_id_lists

Function send_id_lists

uidlist.c:407–414  ·  view source on GitHub ↗

send a complete uid/gid mapping to the peer */

Source from the content-addressed store, hash-verified

405
406/* send a complete uid/gid mapping to the peer */
407void send_id_lists(int f)
408{
409 if (preserve_uid || preserve_acls)
410 send_one_list(f, uidlist, 1);
411
412 if (preserve_gid || preserve_acls)
413 send_one_list(f, gidlist, 0);
414}
415
416uid_t recv_user_name(int f, uid_t uid)
417{

Callers 1

send_file_listFunction · 0.85

Calls 1

send_one_listFunction · 0.85

Tested by

no test coverage detected