jiridanek commented on PR #375:
URL: https://github.com/apache/qpid-proton/pull/375#issuecomment-1186889417
At this point, assuming that the overall structure of the PR is acceptable,
the next steps are I think
- [ ] try it in pypy
- [ ] do a perf test
So that we know if the goals were fulfilled. And next, autogenerate the
wrapper code as already mentioned above. Both the header extraction, and the
API wrapping, such as the buffer-size pattern in
```
def pn_ssl_get_cipher_name(ssl, size):
buffer = ffi.new('char[]', size)
rc = lib.pn_ssl_get_cipher_name(ssl, buffer, size)
name = ffi.string(buffer, size)
return rc, name
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]