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

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

encode.proto @run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/main

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


message Encode {
    enum EncodeType {
        TEXT = 0;
        JSON = 1;
        YAML = 2;
        MSGPACK = 3;
        XML = 4;
    }
    required EncodeType type = 1;
    required bytes      payload = 2;
}