aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2020-03-24 12:24:25 +1000
committeronefang2020-03-24 12:24:25 +1000
commita8b9c06683b2736f484c124e66c50fbb59c9008c (patch)
treef975d8cda7d06086e6fbac80592a58024a72ae29
parentAdd license notes. (diff)
downloadopensim-SC_OLD-a8b9c06683b2736f484c124e66c50fbb59c9008c.zip
opensim-SC_OLD-a8b9c06683b2736f484c124e66c50fbb59c9008c.tar.gz
opensim-SC_OLD-a8b9c06683b2736f484c124e66c50fbb59c9008c.tar.bz2
opensim-SC_OLD-a8b9c06683b2736f484c124e66c50fbb59c9008c.tar.xz
TODO++
-rw-r--r--src/sledjchisl/sledjchisl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c
index 4ca9b4e..915459a 100644
--- a/src/sledjchisl/sledjchisl.c
+++ b/src/sledjchisl/sledjchisl.c
@@ -485,6 +485,7 @@ char *logTypes[] =
485 "36", "TIMEOUT", // cyan 485 "36", "TIMEOUT", // cyan
486 "97;40", "INFO", // white 486 "97;40", "INFO", // white
487 "90", "DEBUG", // grey 487 "90", "DEBUG", // grey
488// VERBOSE? UNKNOWN? FATAL? SILENT? All from Android aparently.
488 "35", "debug", // magenta 489 "35", "debug", // magenta
489 "34", "timeout", // blue 490 "34", "timeout", // blue
490}; 491};
@@ -4693,7 +4694,8 @@ jit library is loaded or the JIT compiler will not be activated.
4693 if ((! qfile_exist(scLib)) && (! qfile_mkdir(scLib, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scLib); 4694 if ((! qfile_exist(scLib)) && (! qfile_mkdir(scLib, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scLib);
4694 if ((! qfile_exist(scRun)) && (! qfile_mkdir(scRun, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP, true))) C("Unable to create path %s", scRun); 4695 if ((! qfile_exist(scRun)) && (! qfile_mkdir(scRun, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP, true))) C("Unable to create path %s", scRun);
4695 if ((! qfile_exist(scBackup)) && (! qfile_mkdir(scBackup, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scBackup); 4696 if ((! qfile_exist(scBackup)) && (! qfile_mkdir(scBackup, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scBackup);
4696// TODO - the path to scCache/sledjchisl.socket needs to be readable by the www-data group. 4697// TODO - the path to scCache/sledjchisl.socket needs to be readable by the www-data group. So the FCGI socket will work.
4698// AND it needs to be group sticky on opensimsc group. So the tmux socket will work.
4697 if ((! qfile_exist(scCache)) && (! qfile_mkdir(scCache, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scCache); 4699 if ((! qfile_exist(scCache)) && (! qfile_mkdir(scCache, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scCache);
4698 if ((! qfile_exist(scData)) && (! qfile_mkdir(scData, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scData); 4700 if ((! qfile_exist(scData)) && (! qfile_mkdir(scData, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scData);
4699 if ((! qfile_exist(scLog)) && (! qfile_mkdir(scLog, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scLog); 4701 if ((! qfile_exist(scLog)) && (! qfile_mkdir(scLog, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", scLog);