Krzysztof Kwiatkowski 10 年之前
父節點
當前提交
c4a98d6155
共有 1 個檔案被更改,包括 7 行新增1 行删除
  1. +7
    -1
      withselect/README.md

+ 7
- 1
withselect/README.md 查看文件

@@ -3,6 +3,12 @@ buggy_openssl_with_fullduplex

Toy code which shows problems with non-blocking, fullduplex I/O & renegotiation in OpenSSL

What is it:
This code shows that it is not possible to use SSL_write() and SSL_read() functions in the same
way as ::send() and ::recv().
The main difference between SSL_write/read functions and send/recv system calls is that
SSL_write function may in fact read data from the socket in some situations (similary
SSL_read may need to write data to the socket).

How it works:

@@ -35,4 +41,4 @@ How it works:
TCP:
In TCP exchange we can see that transfer between client & server is OK until
client sends "Client Hello" packet. This packet is sent when SSL_renegotiate
is called
is called

Loading…
取消
儲存