Codebase list golang-github-farsightsec-go-nmsg / upstream/0.0_git20190917.04d2174 nmsg_base / linkpair.proto
upstream/0.0_git20190917.04d2174

Tree @upstream/0.0_git20190917.04d2174 (Download .tar.gz)

linkpair.proto @upstream/0.0_git20190917.04d2174raw · history · blame

syntax = "proto2";
package nmsg.base;

enum Linktype {
    anchor = 0;
    redirect = 1;
}

message Linkpair {
    required Linktype   type = 1;
    required bytes      src = 2;
    required bytes      dst = 3;
    optional bytes      headers = 5;
}