mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[6822] Implement --version option for mangosd/realmd for output current binary version and exit.
This commit is contained in:
parent
02ec0d5233
commit
2bf6345beb
4 changed files with 36 additions and 21 deletions
|
|
@ -26,6 +26,8 @@
|
|||
#include "Log.h"
|
||||
#include "Master.h"
|
||||
#include "SystemConfig.h"
|
||||
#include "revision.h"
|
||||
#include "revision_nr.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#include "ServiceWin32.h"
|
||||
|
|
@ -51,6 +53,7 @@ uint32 realmID; ///< Id of the realm
|
|||
void usage(const char *prog)
|
||||
{
|
||||
sLog.outString("Usage: \n %s [<options>]\n"
|
||||
" --version print version and exist\n\r"
|
||||
" -c config_file use config_file as configuration file\n\r"
|
||||
#ifdef WIN32
|
||||
" Running as service functions:\n\r"
|
||||
|
|
@ -86,6 +89,12 @@ extern int main(int argc, char **argv)
|
|||
cfg_file = argv[c];
|
||||
}
|
||||
|
||||
if( strcmp(argv[c],"--version") == 0)
|
||||
{
|
||||
printf("%s\n", _FULLVERSION(REVISION_DATE,REVISION_TIME,REVISION_NR,REVISION_ID));
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef WIN32
|
||||
////////////
|
||||
//Services//
|
||||
|
|
@ -126,11 +135,27 @@ extern int main(int argc, char **argv)
|
|||
++c;
|
||||
}
|
||||
|
||||
sLog.outString( "%s [world-daemon]", _FULLVERSION(REVISION_DATE,REVISION_TIME,REVISION_NR,REVISION_ID) );
|
||||
sLog.outString( "<Ctrl-C> to stop.\n\n" );
|
||||
|
||||
sLog.outTitle( "MM MM MM MM MMMMM MMMM MMMMM");
|
||||
sLog.outTitle( "MM MM MM MM MMM MMM MM MM MMM MMM");
|
||||
sLog.outTitle( "MMM MMM MMM MM MMM MMM MM MM MMM");
|
||||
sLog.outTitle( "MM M MM MMMM MM MMM MM MM MMM");
|
||||
sLog.outTitle( "MM M MM MMMMM MM MMMM MMM MM MM MMM");
|
||||
sLog.outTitle( "MM M MM M MMM MM MMM MMMMMMM MM MM MMM");
|
||||
sLog.outTitle( "MM MM MMM MM MM MM MMM MM MM MMM");
|
||||
sLog.outTitle( "MM MM MMMMMMM MM MM MMM MMM MM MM MMM MMM");
|
||||
sLog.outTitle( "MM MM MM MMM MM MM MMMMMM MMMM MMMMM");
|
||||
sLog.outTitle( " MM MMM http://getmangos.com");
|
||||
sLog.outTitle( " MMMMMM\n\n");
|
||||
|
||||
if (!sConfig.SetSource(cfg_file))
|
||||
{
|
||||
sLog.outError("Could not find configuration file %s.", cfg_file);
|
||||
return 1;
|
||||
}
|
||||
|
||||
sLog.outString("Using configuration file %s.", cfg_file);
|
||||
|
||||
///- and run the 'Master'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue