gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r30105 - libmicrohttpd/src/examples


From: gnunet
Subject: [GNUnet-SVN] r30105 - libmicrohttpd/src/examples
Date: Thu, 10 Oct 2013 17:01:37 +0200

Author: andreyu
Date: 2013-10-10 17:01:37 +0200 (Thu, 10 Oct 2013)
New Revision: 30105

Modified:
   libmicrohttpd/src/examples/mhd2spdy_spdy.c
Log:
mhd2spdy: dont die on frame for unknown stream

Modified: libmicrohttpd/src/examples/mhd2spdy_spdy.c
===================================================================
--- libmicrohttpd/src/examples/mhd2spdy_spdy.c  2013-10-10 15:00:39 UTC (rev 
30104)
+++ libmicrohttpd/src/examples/mhd2spdy_spdy.c  2013-10-10 15:01:37 UTC (rev 
30105)
@@ -348,7 +348,11 @@
 
   proxy = spdylay_session_get_stream_user_data(session, stream_id);
   if(NULL == proxy)
-    DIE("no proxy obj");
+  {
+    PRINT_INFO2("received frame type %i for unkonwn stream id %i", type, 
stream_id);
+    return;
+    //DIE("no proxy obj");
+  }
 
   switch(type) {
     case SPDYLAY_SYN_REPLY:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]