File: metadata.go

package info (click to toggle)
nebula 1.6.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,376 kB
  • sloc: makefile: 149; sh: 100; python: 16
file content (18 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package nebula

/*

import (
	proto "google.golang.org/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)
}

*/