Server - Ignore SIGPIPE (just let it return a read error)
[tpg/opendispense2.git] / src / server / main.c
index cbebee2..9359c4e 100644 (file)
@@ -31,6 +31,7 @@ extern int    gbServer_RunInBackground;
 extern int     giServer_Port;
 extern const char      *gsItemListFile;
 extern const char      *gsCoke_ModbusAddress;
+extern int     giCoke_ModbusPort;
 extern const char      *gsDoor_SerialPort;
 extern bool    gbSyslogEnabled;
 
@@ -126,15 +127,20 @@ int main(int argc, char *argv[])
        gbServer_RunInBackground = Config_GetValue_Bool("daemonise", 0);
        gsCokebankPath       = Config_GetValue("cokebank_database", 0);
        gsDoor_SerialPort    = Config_GetValue("door_serial_port", 0);
-       gsCoke_ModbusAddress = Config_GetValue("coke_modbus_address", 0);
        giServer_Port        = Config_GetValue_Int("server_port", 0);
        gsItemListFile       = Config_GetValue("items_file", 0);
 
        gbNoCostMode         = (Config_GetValue_Bool("test_mode", 0) == 1);
        gbSyslogEnabled      = (Config_GetValue_Bool("disable_syslog", 0) == 0);
 
+       gsCoke_ModbusAddress = Config_GetValue("coke_modbus_address", 0);
+       giCoke_ModbusPort    = Config_GetValue_Int("coke_modbus_port", 0);
+
+       // - Cleanly tear down the server on SIGINT/SIGTERM
        signal(SIGINT, sigint_handler);
        signal(SIGTERM, sigint_handler);
+       // - ignore SIGPIPE to prevent a crashing client from bringing the server down too
+       signal(SIGPIPE, SIG_IGN);
        
        openlog("odispense2", 0, LOG_LOCAL4);
        

UCC git Repository :: git.ucc.asn.au