Print SSL decrypted output

This commit is contained in:
emanuel 2022-04-18 11:39:06 +01:00
parent 9e72678205
commit 4178fafbad
1 changed files with 7 additions and 0 deletions

View File

@ -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;