19 lines
258 B
Go
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)
|
||
|
}
|
||
|
|
||
|
*/
|