summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/tls/parse-gnutls-cli-debug-log.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/crypto/tls/parse-gnutls-cli-debug-log.py')
-rw-r--r--src/pkg/crypto/tls/parse-gnutls-cli-debug-log.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pkg/crypto/tls/parse-gnutls-cli-debug-log.py b/src/pkg/crypto/tls/parse-gnutls-cli-debug-log.py
index c03eaa6ea..5692bd32f 100644
--- a/src/pkg/crypto/tls/parse-gnutls-cli-debug-log.py
+++ b/src/pkg/crypto/tls/parse-gnutls-cli-debug-log.py
@@ -35,6 +35,8 @@ for line in sys.stdin.readlines():
bs = line.split()
for b in bs:
currentBlock.append(int(b, 16))
+ elif line.startswith("|<7>| RB-PEEK: Read 1 bytes"):
+ currentBlock = currentBlock[:-1]
if len(currentBlock) > 0:
blocks.append(currentBlock)