This commit is contained in:
Tristan B. Kildaire 2020-04-19 13:11:49 +02:00
parent f4378cb428
commit 8df01992ce
3 changed files with 16 additions and 2 deletions

14
built_in_handlers.md Normal file
View File

@ -0,0 +1,14 @@
Built-in handlers
=================
There is a built-in handler for when the `type` field is set
to `internal`.
The `data` field of the `payload` JSON object will be of the
form:
````
"data" : {
}
````

View File

@ -41,7 +41,7 @@ public class MessageHandler
domainSocket = new Socket(AddressFamily.UNIX, SocketType.STREAM);
/* Bind it to the socket path */
domainSocket.connect(new UnixAddress(socketPath));
domainSocket.connect(new UnixAddressx(socketPath));
}
private static string[] getAvailableTypes(JSONValue handlerBlock)

View File

@ -4,7 +4,7 @@ import server.types;
import std.conv : to;
import std.socket : SocketOSException;
import utils.debugging : debugPrint;
import std.stdio : File, writeln;
import std.stdio : File,;
import std.json : parseJSON, JSONValue;
JSONValue getConfig(string configurationFilePath)