nebula/metadata.go
Slack Security Team f22b4b584d Public Release
2019-11-19 17:00:20 +00:00

19 lines
258 B
Go

package nebula
/*
import (
proto "github.com/golang/protobuf/proto"
)
func HandleMetaProto(p []byte) {
m := &NebulaMeta{}
err := proto.Unmarshal(p, m)
if err != nil {
l.Debugf("problem unmarshaling meta message: %s", err)
}
//fmt.Println(m)
}
*/