mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
update the cwd
This commit is contained in:
parent
07fe35f11d
commit
3659eec9d1
3 changed files with 23 additions and 6 deletions
|
@ -1339,11 +1339,6 @@ int SrsConfig::parse_options(int argc, char** argv)
|
|||
}
|
||||
}
|
||||
|
||||
// cwd
|
||||
char cwd[256];
|
||||
getcwd(cwd, sizeof(cwd));
|
||||
_cwd = cwd;
|
||||
|
||||
// config
|
||||
show_help = true;
|
||||
for (int i = 1; i < argc; i++) {
|
||||
|
@ -1411,6 +1406,18 @@ int SrsConfig::parse_options(int argc, char** argv)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int SrsConfig::initialize_cwd()
|
||||
{
|
||||
int ret = ERROR_SUCCESS;
|
||||
|
||||
// cwd
|
||||
char cwd[256];
|
||||
getcwd(cwd, sizeof(cwd));
|
||||
_cwd = cwd;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
string SrsConfig::config()
|
||||
{
|
||||
return config_file;
|
||||
|
|
|
@ -287,6 +287,11 @@ public:
|
|||
* parse the cli, the main(argc,argv) function.
|
||||
*/
|
||||
virtual int parse_options(int argc, char** argv);
|
||||
/**
|
||||
* initialize the cwd for server,
|
||||
* because we may change the workdir.
|
||||
*/
|
||||
virtual int initialize_cwd();
|
||||
/**
|
||||
* get the config file path.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue