aboutsummaryrefslogtreecommitdiffstats
path: root/packet/command/passthrough/passthrough.go
diff options
context:
space:
mode:
Diffstat (limited to 'packet/command/passthrough/passthrough.go')
-rw-r--r--packet/command/passthrough/passthrough.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/packet/command/passthrough/passthrough.go b/packet/command/passthrough/passthrough.go
new file mode 100644
index 0000000..58c937c
--- /dev/null
+++ b/packet/command/passthrough/passthrough.go
@@ -0,0 +1,38 @@
+package passthrough
+
+import (
+ "github.com/osm/quake/common/buffer"
+ "github.com/osm/quake/common/context"
+)
+
+type Command struct {
+ Data []byte
+}
+
+func (cmd *Command) Bytes() []byte {
+ buf := buffer.New()
+
+ buf.PutBytes(cmd.Data)
+
+ return buf.Bytes()
+}
+
+func Parse(ctx *context.Context, buf *buffer.Buffer, str string) (*Command, error) {
+ var cmd Command
+
+ if len(str) > 0 {
+ cmd.Data = []byte(str)
+ }
+
+ remaining := buf.Len() - buf.Off()
+ if remaining > 0 {
+ data, err := buf.GetBytes(remaining)
+ if err != nil {
+ return nil, err
+ }
+
+ cmd.Data = append(cmd.Data, data...)
+ }
+
+ return &cmd, nil
+}