hi,
If not mistaken, on the latest httpd-trunk\modules\http2 update:
D:\Projects\svn\httpd-trunk\modules\http2>svn diff
Index: h2_session.c
===================================================================
--- h2_session.c (revision 1700915)
+++ h2_session.c (working copy)
@@ -259,8 +259,9 @@
const nghttp2_frame *frame, void *userp)
{
/* This starts a new stream. */
+ int rv;
(void)ngh2;
- int rv = stream_open((h2_session *)userp, frame->hd.stream_id);
+ rv = stream_open((h2_session *)userp, frame->hd.stream_id);
if (rv != NGHTTP2_ERR_CALLBACK_FAILURE) {
/* on_header_cb or on_frame_recv_cb will dectect that stream
does not exist and submit RST_STREAM. */
Otherwise compiles fine.
Norm