summaryrefslogtreecommitdiff
path: root/vendor/github.com/cretz/bine/control/cmd_stream.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/cretz/bine/control/cmd_stream.go')
-rw-r--r--vendor/github.com/cretz/bine/control/cmd_stream.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/github.com/cretz/bine/control/cmd_stream.go b/vendor/github.com/cretz/bine/control/cmd_stream.go
new file mode 100644
index 0000000..6fde0a8
--- /dev/null
+++ b/vendor/github.com/cretz/bine/control/cmd_stream.go
@@ -0,0 +1,31 @@
+package control
+
+import (
+ "strconv"
+)
+
+// AttachStream invokes ATTACHSTREAM.
+func (c *Conn) AttachStream(streamID string, circuitID string, hopNum int) error {
+ if circuitID == "" {
+ circuitID = "0"
+ }
+ cmd := "ATTACHSTREAM " + streamID + " " + circuitID
+ if hopNum > 0 {
+ cmd += " HOP=" + strconv.Itoa(hopNum)
+ }
+ return c.sendRequestIgnoreResponse(cmd)
+}
+
+// RedirectStream invokes REDIRECTSTREAM.
+func (c *Conn) RedirectStream(streamID string, address string, port int) error {
+ cmd := "REDIRECTSTREAM " + streamID + " " + address
+ if port > 0 {
+ cmd += " " + strconv.Itoa(port)
+ }
+ return c.sendRequestIgnoreResponse(cmd)
+}
+
+// CloseStream invokes CLOSESTREAM.
+func (c *Conn) CloseStream(streamID string, reason string) error {
+ return c.sendRequestIgnoreResponse("CLOSESTREAM %v %v", streamID, reason)
+}