Codebase list golang-github-farsightsec-go-nmsg / run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/main nmsg_base / linkpair.proto
run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/main

Tree @run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/main (Download .tar.gz)

linkpair.proto @run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/mainraw · history · blame

syntax = "proto2";
package nmsg.base;
option go_package = "github.com/farsightsec/go-nmsg/nmsg_base";


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