You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/JSON-RPC.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -321,6 +321,8 @@ Results:
321
321
| result.city | string | The server city. |
322
322
| result.countryId | number | The server country ID (see QLocale::Country). |
323
323
| result.welcomeMessage | string | The server welcome message. |
324
+
| result.directoryType | string | The directory type as a string (see EDirectoryType and SerializeDirectoryType). |
325
+
| result.directoryAddress | string | The string used to look up the directory address (only assume valid if directoryType is "custom" and registrationStatus is "registered"). |
324
326
| result.directory | string | The directory with which this server requested registration, or blank if none. |
325
327
| result.registrationStatus | string | The server registration status as string (see ESvrRegStatus and SerializeRegistrationStatus). |
326
328
@@ -342,6 +344,24 @@ Results:
342
344
| result | string | Always "acknowledged". To check if the recording was restarted or if there is any error, call `jamulusserver/getRecorderStatus` again. |
343
345
344
346
347
+
### jamulusserver/setDirectory
348
+
349
+
Set the directory type and, for custom, the directory address.
350
+
351
+
Parameters:
352
+
353
+
| Name | Type | Description |
354
+
| --- | --- | --- |
355
+
| params.directoryType | string | The directory type as a string (see EDirectoryType and DeserializeDirectoryType). |
356
+
|[params.directoryAddress]| string | (optional) The directory address, required if `directoryType` is "custom". |
0 commit comments