-
-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Imagine we have 3 receivers:
- SSL
- base TCP
- Sean's special
For reading we want it to go:
- base TCP
- SSL (to decrypt)
- Sean's special (to do the special handling)
For writing we want:
- Sean's special
- SSL
- base TCP
This means that for reading we want to call:
SSL then Sean's Special so SSL should wrap Sean's special: We need to decrypt the data before Sean's special can handle it.
For writing we want Sean's special then SSL which means that Sean's special should wrap SSL. We want to encrypt the data after Sean's special has handled it.
We need to be able to have an order for receiver's for reading and for writing that can differ.
At the moment we have a single receiver type. We need to take more than 1. 3 probably:
- Standard
- Reading
- Writing
Metadata
Metadata
Assignees
Labels
No labels