Codebase list golang-github-farsightsec-go-nmsg / 119fac34-eb99-4b89-bd10-103c2c0ce46f/main nmsg_base / encode.proto
119fac34-eb99-4b89-bd10-103c2c0ce46f/main

Tree @119fac34-eb99-4b89-bd10-103c2c0ce46f/main (Download .tar.gz)

encode.proto @119fac34-eb99-4b89-bd10-103c2c0ce46f/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;
}