com.sandpolis.core.ipc.metadata.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sandpolis-core-ipc Show documentation
Show all versions of sandpolis-core-ipc Show documentation
The inter-process communications library module
The newest version!
//============================================================================//
// //
// Copyright © 2015 - 2020 Subterranean Security //
// //
// This source file is subject to the terms of the Mozilla Public License //
// version 2. You may not use this file except in compliance with the MPL //
// as published by the Mozilla Foundation at: //
// //
// https://mozilla.org/MPL/2.0 //
// //
//=========================================================S A N D P O L I S==//
syntax = "proto3";
package ipc;
option java_package = "com.sandpolis.core.ipc";
/**
* Request instance metadata.
*/
message RQ_Metadata {
}
/**
* Response to RQ_Metadata.
*/
message RS_Metadata {
// The instance's type
string instance = 1;
// The instance's Sandpolis version
string version = 2;
// The instance's PID
int64 pid = 3;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy