From 69bab3d814691a69119d8d9a6be476f15ab56d4c Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Mon, 24 Dec 2018 14:33:41 -0500 Subject: [PATCH] docs/api: minor fixes --- docs/api.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 43cc318..a2f0e61 100644 --- a/docs/api.md +++ b/docs/api.md @@ -524,6 +524,8 @@ object twice. ## Dilation +(NOTE: this API is still in development) + To send bulk data, or anything more than a handful of messages, a Wormhole can be "dilated" into a form that uses a direct TCP connection between the two endpoints. @@ -639,7 +641,7 @@ def FileSendingProtocol(internet.Protocol): self.transport.loseConnection() f.close() def _send(metadata, filename): - f = protocol.ClientCreator(reactor, + f = protocol.ClientCreator(reactor, FileSendingProtocol, metadata, filename) subchannel_client_ep.connect(f) def FileReceivingProtocol(internet.Protocol):