send a complete uid/gid mapping to the peer */
| 405 | |
| 406 | /* send a complete uid/gid mapping to the peer */ |
| 407 | void 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 | |
| 416 | uid_t recv_user_name(int f, uid_t uid) |
| 417 | { |
no test coverage detected