github.com/google/fleetspeak@v0.1.15-0.20240426164851-4f31f62c1aea/fleetspeak/src/server/proto/fleetspeak_server/server.proto (about)

     1  syntax = "proto3";
     2  
     3  package fleetspeak.server;
     4  
     5  import "fleetspeak/src/server/proto/fleetspeak_server/services.proto";
     6  import "google/protobuf/duration.proto";
     7  
     8  option go_package = "github.com/google/fleetspeak/fleetspeak/src/server/proto/fleetspeak_server";
     9  
    10  // Describes a server's configuration. If unset, all values default to values
    11  // reasonable for a unit test or small installation. Larger installations may
    12  // need to tune these.
    13  message ServerConfig {
    14    // The collection of services that this server should include.
    15    repeated ServiceConfig services = 1;
    16  
    17    // The approximate time to wait between checking for new broadcasts. If unset,
    18    // a default of 1 minute is used.
    19    google.protobuf.Duration broadcast_poll_time = 2;
    20  }