Commit de894f08 authored by Max Lv's avatar Max Lv

update libev implementation

parent 532ab108
......@@ -2,4 +2,5 @@
#define LOGD(...) ((void)__android_log_print(ANDROID_LOG_DEBUG, "shadowsocks", __VA_ARGS__))
#define LOGE(...) ((void)__android_log_print(ANDROID_LOG_ERROR, "shadowsocks", __VA_ARGS__))
#define perror(a) (LOGE("%s: %s", a, strerror(errno)))
......@@ -49,14 +49,10 @@ void get_table(const char* key) {
_a = *(unsigned long long *)tmp_hash;
unsigned int i;
LOGD("key hash: %lld", _a);
for(i = 0; i < 256; ++i) {
table[i] = i;
}
for(i = 1; i < 1024; ++i) {
// use bubble sort in order to keep the array stable as in Python
unsigned char t;
_i = i;
qsort(table, 256, sizeof(unsigned char), random_compare);
}
......
......@@ -539,10 +539,11 @@ int main (int argc, char **argv)
char *port = NULL;
char *key = NULL;
int c;
int f_flags = 0;
opterr = 0;
while ((c = getopt (argc, argv, "s:p:l:k:")) != -1) {
while ((c = getopt (argc, argv, "fs:p:l:k:")) != -1) {
switch (c) {
case 's':
server = optarg;
......@@ -556,6 +557,9 @@ int main (int argc, char **argv)
case 'k':
key = optarg;
break;
case 'f':
f_flags = 1;
break;
}
}
......@@ -564,46 +568,49 @@ int main (int argc, char **argv)
exit(EXIT_FAILURE);
}
/* Our process ID and Session ID */
pid_t pid, sid;
if (f_flags) {
/* Fork off the parent process */
pid = fork();
if (pid < 0) {
exit(EXIT_FAILURE);
}
/* If we got a good PID, then
we can exit the parent process. */
if (pid > 0) {
FILE *file = fopen("/data/data/com.github.shadowsocks/shadowsocks.pid", "w");
fprintf(file, "%d", pid);
fclose(file);
exit(EXIT_SUCCESS);
}
/* Our process ID and Session ID */
pid_t pid, sid;
/* Change the file mode mask */
umask(0);
/* Fork off the parent process */
pid = fork();
if (pid < 0) {
exit(EXIT_FAILURE);
}
/* If we got a good PID, then
we can exit the parent process. */
if (pid > 0) {
FILE *file = fopen("/data/data/com.github.shadowsocks/shadowsocks.pid", "w");
fprintf(file, "%d", pid);
fclose(file);
exit(EXIT_SUCCESS);
}
/* Open any logs here */
/* Change the file mode mask */
umask(0);
/* Create a new SID for the child process */
sid = setsid();
if (sid < 0) {
/* Log the failure */
exit(EXIT_FAILURE);
}
/* Open any logs here */
/* Create a new SID for the child process */
sid = setsid();
if (sid < 0) {
/* Log the failure */
exit(EXIT_FAILURE);
}
/* Change the current working directory */
if ((chdir("/")) < 0) {
/* Log the failure */
exit(EXIT_FAILURE);
}
/* Close out the standard file descriptors */
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
/* Change the current working directory */
if ((chdir("/")) < 0) {
/* Log the failure */
exit(EXIT_FAILURE);
}
/* Close out the standard file descriptors */
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
}
_server = strdup(server);
_remote_port = strdup(remote_port);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment