package radar import ( "encoding/json" "fmt" "joylink.club/bj-rtsts-server/third_party/message" "joylink.club/bj-rtsts-server/third_party/udp" "testing" ) func TestUdp(t *testing.T) { fmt.Println(0 | (byte(1) << 7) | (byte(1) << 6) | (byte(1) << 5) | (byte(1) << 4) | (byte(1) << 1) | (byte(1) << 0)) fmt.Println(fmt.Sprintf("%b", 0|(byte(1)<<7)|(byte(1)<<6)|(byte(1)<<5)|(byte(1)<<4)|(byte(1)<<1)|(byte(1)<<0))) fmt.Println("准备启动服务...") addr := fmt.Sprintf("%v:%v", "127.0.0.1", "8899") server := udp.NewServer(addr, handle) server.Listen() select {} } func handle(d []byte) { ri := message.RadarInfo{} err := ri.Decode(d) if err == nil { jsonD, _ := json.Marshal(ri) fmt.Println(string(jsonD)) } }