2023-11-03 Fred Gleason <fredg@paravelsystems.com>

* Added 'RDCoreApplication::ExitInternalError' to the
	'RDCoreApplication::ExitCode' enumeration.
	* Refactored the 'RDCae' class to use the native BSD sockets API
	instead of 'QTcpSocket'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2023-11-03 11:37:41 -04:00
parent 8bb5b3c9e4
commit c9953bffe2
18 changed files with 177 additions and 128 deletions

View File

@@ -54,7 +54,8 @@ class RDCoreApplication : public QObject
ExitLogLinkFailed=10,ExitNoPerms=11,ExitReportFailed=12,
ExitImportFailed=13,ExitNoDropbox=14,ExitNoGroup=15,
ExitInvalidCart=16,ExitNoSchedCode=17,
ExitBadTicket=18,ExitNoStation=19,ExitLast=20};
ExitBadTicket=18,ExitNoStation=19,ExitInternalError=20,
ExitLast=21};
RDCoreApplication(const QString &module_name,const QString &cmdname,
const QString &usage,bool use_translations,QObject *parent);
~RDCoreApplication();