Skip to content
Snippets Groups Projects
net.proto 180 B
Newer Older
  • Learn to ignore specific revisions
  • Oliver Herms's avatar
    API
    Oliver Herms committed
    syntax = "proto3";
    
    package api;
    
    message Prefix {
        IP address = 1;
        uint32 pfxlen = 2;
    }
    
    message IP {
        uint64 higher = 1;
        uint64 lower = 2;
        bool is_legacy = 3;
    }