| 1224 | } |
| 1225 | |
| 1226 | static void format_session_id(struct strbuf *buf, struct upload_pack_data *d) { |
| 1227 | if (d->advertise_sid) |
| 1228 | strbuf_addf(buf, " session-id=%s", trace2_session_id()); |
| 1229 | } |
| 1230 | |
| 1231 | static void write_v0_ref(struct upload_pack_data *data, |
| 1232 | const struct reference *ref, |
no test coverage detected