"len = %u, stream = %x\n", len, stream_id));
if(stream_id != stream->stream_id) {
+ DEBUGF(infof(conn->data, "on_data_chunk_recv() "
+ "got stream %x, expected stream %x\n",
+ stream_id, stream->stream_id));
return 0;
}
error_code));
if(stream_id != stream->stream_id) {
+ DEBUGF(infof(conn->data, "on_stream_close() "
+ "got stream %x, expected stream %x\n",
+ stream_id, stream->stream_id));
return 0;
}
}
if(frame->hd.stream_id != stream->stream_id) {
+ DEBUGF(infof(conn->data, "on_header() "
+ "got stream %x, expected stream %x\n",
+ frame->hd.stream_id, stream->stream_id));
return 0;
}
free(nva);
if(stream_id < 0) {
+ DEBUGF(infof(conn->data, "http2_send() send error\n"));
*err = CURLE_SEND_ERROR;
return -1;
}