}
// wrap post body in an inflator stream
post_body_.flush();
InputStream inflator_input_stream =
new GZIPInputStream(new IOBufferInputStream(post_body_), 1024);
// decompress by writing to a new IO buffer, update body
IOBuffer inflatedBodyBuffer = new IOBuffer();
final byte[] byteBuffer = new byte[1024];
int numBytes;