mirror of
https://github.com/go-i2p/goSam.git
synced 2025-07-06 19:06:24 -04:00
46 lines
995 B
Go
46 lines
995 B
Go
package goSam
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// StreamConnect asks SAM for a TCP-Like connection to dest, has to be called on a new Client
|
|
func (c *Client) StreamConnect(id int32, dest string) error {
|
|
r, err := c.sendCmd("STREAM CONNECT ID=%d DESTINATION=%s\n", id, dest)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// TODO: move check into sendCmd()
|
|
if r.Topic != "STREAM" || r.Type != "STATUS" {
|
|
return fmt.Errorf("Unknown Reply: %+v\n", r)
|
|
}
|
|
|
|
result := r.Pairs["RESULT"]
|
|
if result != "OK" {
|
|
return ReplyError{result, r}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// StreamAccept asks SAM to accept a TCP-Like connection
|
|
func (c *Client) StreamAccept(id int32) (*Reply, error) {
|
|
r, err := c.sendCmd("STREAM ACCEPT ID=%d SILENT=false\n", id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// TODO: move check into sendCmd()
|
|
if r.Topic != "STREAM" || r.Type != "STATUS" {
|
|
return nil, fmt.Errorf("Unknown Reply: %+v\n", r)
|
|
}
|
|
|
|
result := r.Pairs["RESULT"]
|
|
if result != "OK" {
|
|
return nil, ReplyError{result, r}
|
|
}
|
|
|
|
return r, nil
|
|
}
|