pingtunnel/pingtunnel_test.go
2019-10-22 21:04:25 +08:00

26 lines
409 B
Go

package pingtunnel
import (
"fmt"
"github.com/golang/protobuf/proto"
"testing"
)
func Test0001(test *testing.T) {
my := &MyMsg{}
my.Id = "12345"
my.Target = "111:11"
my.Type = 12
my.Data = make([]byte, 3)
dst, _ := proto.Marshal(my)
fmt.Println("dst = ", dst)
my1 := &MyMsg{}
proto.Unmarshal(dst, my1)
fmt.Println("my1 = ", my1)
proto.Unmarshal(dst[0:4], my1)
fmt.Println("my1 = ", my1)
}