Send over plugin name and version

Might be needed during the handshake between engine and plugin

Contributes to CURA-10619
This commit is contained in:
Jelle Spijker 2023-08-15 11:27:15 +02:00
parent 0667230055
commit f634a5bd44
3 changed files with 8 additions and 3 deletions

View file

@ -19,8 +19,10 @@ enum SlotID {
message EnginePlugin
{
SlotID id = 1;
optional string address = 2;
optional uint32 port = 3;
string address = 2;
uint32 port = 3;
string plugin_name = 4;
string plugin_version = 5;
}
message Slice