Print SSL decrypted output
This commit is contained in:
parent
9e72678205
commit
4178fafbad
|
|
@ -315,6 +315,13 @@ static int transport_indication(facilities_t *facilities, void* responder, void*
|
||||||
}
|
}
|
||||||
|
|
||||||
it2s_tender_queue_send(facilities->tx_queue, buf, enc.encoded+1, ITSS_TRANSPORT, id, "TR.packet.tcp");
|
it2s_tender_queue_send(facilities->tx_queue, buf, enc.encoded+1, ITSS_TRANSPORT, id, "TR.packet.tcp");
|
||||||
|
} else {
|
||||||
|
printf("tls message = ");
|
||||||
|
for (int m = 0; m < srep->data->choice.tlsRecv.data.size; ++m) {
|
||||||
|
printf("%c", srep->data->choice.tlsRecv.data.buf[m]);
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
fflush(stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue