github.com/google/fleetspeak@v0.1.15-0.20240426164851-4f31f62c1aea/fleetspeak/src/client/channel/proto/fleetspeak_channel/channel.proto (about)

     1  syntax = "proto3";
     2  
     3  package fleetspeak.channel;
     4  
     5  option go_package = "github.com/google/fleetspeak/fleetspeak/src/client/channel/proto/fleetspeak_channel";
     6  
     7  // Optional first message sent through a channel when it is created. It is meant
     8  // to contain info about the process that the other end of the channel might
     9  // find useful.
    10  message StartupData {
    11    // Self-reported PID.
    12    int64 pid = 1;
    13  
    14    // Self-reported service version string.
    15    string version = 2;
    16  }