enarx-archive / cipherpipe

Cipherpipe is a wrapper around libc to add the IPPROTO_TLS socket protocol.
Apache License 2.0
1 stars 4 forks source link

Implement read() and write() function #13

Closed DK-DARKmatter closed 5 years ago

DK-DARKmatter commented 5 years ago

Implement read() and write() function, tls part needs to be implemented in the future.

DK-DARKmatter commented 5 years ago

Why the cargo test --verbose failed?

npmccallum commented 5 years ago

Why the cargo test --verbose failed?

Probably because the test process calls read() and/or write() and you changed the behavior subtly. Alternatively, the next!() macro is broken.

DK-DARKmatter commented 5 years ago

Change the name of the function indeed pass the test. But that's not the thing we expect. Is there any other alternative way we could solve this?

npmccallum commented 5 years ago

You need to debug the problem.

npmccallum commented 5 years ago

Obsoleted by #21.