Removed unused debug function

This commit is contained in:
Tatsuhiro Tsujikawa 2012-02-08 01:28:59 +09:00
parent 154b02c464
commit 6904ccc023
1 changed files with 0 additions and 8 deletions

View File

@ -895,14 +895,6 @@ static void spdylay_inbound_frame_reset(spdylay_inbound_frame *iframe)
iframe->ign = 0;
}
static void spdylay_debug_print_nv(char **nv)
{
int i;
for(i = 0; nv[i]; i += 2) {
printf("%s: %s\n", nv[i], nv[i+1]);
}
}
static void spdylay_session_call_on_request_recv
(spdylay_session *session, int32_t stream_id)
{