Shawn Pearce <spearce@xxxxxxxxxxx> writes: > Yes. Above we flushed the req_buf and send that in an HTTP request. > You need to hoist this block above the "if (args->stateless_rpc)" > segment. What do you mean by "hoist"? For the req advertisement, it seems that you are not hoisting anything but duplicating the code, turning safe_write() followed by flush into packet-buf-flush and sending the result over the sideband. Shouldn't this new data be sent over the sideband-to-http the same way? Unless you do not want signed push over http, that is... builtin/send-pack.c | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/builtin/send-pack.c b/builtin/send-pack.c index 3193f34..37e0313 100644 --- a/builtin/send-pack.c +++ b/builtin/send-pack.c @@ -379,9 +379,13 @@ int send_pack(struct send_pack_args *args, packet_buf_write(&req_buf, "%.*s", (int)(ep - cp), cp); } - /* Do we need anything funky for stateless rpc? */ - safe_write(out, req_buf.buf, req_buf.len); - packet_flush(out); + if (args->stateless_rpc) { + packet_buf_flush(&req_buf); + send_sideband(out, -1, req_buf.buf, req_buf.len, LARGE_PACKET_MAX); + } else { + safe_write(out, req_buf.buf, req_buf.len); + packet_flush(out); + } } strbuf_release(&req_buf); -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html