summaryrefslogtreecommitdiffstats
path: root/src/main/thrift/bwlp.thrift
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/thrift/bwlp.thrift')
-rw-r--r--src/main/thrift/bwlp.thrift6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/thrift/bwlp.thrift b/src/main/thrift/bwlp.thrift
index 47f0964..12fa302 100644
--- a/src/main/thrift/bwlp.thrift
+++ b/src/main/thrift/bwlp.thrift
@@ -353,6 +353,8 @@ struct SatelliteConfig {
7: optional i32 maxConnectionsPerTransfer,
// Maximum number of locations per lecture
8: optional i32 maxLocationsPerLecture,
+ // Whether users connecting to the sat for the first time are allowed to login
+ 9: optional bool allowLoginByDefault,
}
struct SatelliteStatus {
@@ -406,6 +408,10 @@ service SatelliteServer {
// Get server (thrift interface) version
int getVersion(1: int clientVersion),
+ // Get server features. Kinda superseding getVersion, as it's reasier to handle minor updates
+ // This returns a space separated list of keywords which represent certain features
+ string getSupportedFeatures(),
+
// Get configuration parameters of this satellite server
SatelliteConfig getConfiguration(),