Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
com.ccwangluo.accelerator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sheteng
com.ccwangluo.accelerator
Commits
620d48df
Commit
620d48df
authored
Jan 10, 2013
by
Max Lv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compile issues
parent
5c58ed98
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
11 additions
and
638 deletions
+11
-638
.gitignore
.gitignore
+1
-3
assets/obfsproxy
assets/obfsproxy
+0
-0
assets/redsocks
assets/redsocks
+0
-0
jni/Android.mk
jni/Android.mk
+5
-1
jni/libevent/buffer.c
jni/libevent/buffer.c
+1
-0
jni/libevent/config.h
jni/libevent/config.h
+2
-2
jni/libevent/include/Makefile.am
jni/libevent/include/Makefile.am
+0
-47
jni/libevent/include/Makefile.in
jni/libevent/include/Makefile.in
+0
-584
jni/libevent/include/event2/event-config.h
jni/libevent/include/event2/event-config.h
+1
-1
jni/obfsproxy/micro-revision.i
jni/obfsproxy/micro-revision.i
+1
-0
No files found.
.gitignore
View file @
620d48df
...
...
@@ -11,9 +11,7 @@ tests/bin
tests/gen
tests/local.properties
NUL
libs/armeabi/polipo
libs/armeabi/pdnsd
libs/armeabi/shadowsocks
libs/armeabi/*
#Intellij IDEA
*.iml
...
...
assets/obfsproxy
0 → 100755
View file @
620d48df
File added
assets/redsocks
View file @
620d48df
No preview for this file type
jni/Android.mk
View file @
620d48df
...
...
@@ -61,12 +61,16 @@ OBFSPROXY_SOURCES := container.c crypt.c external.c \
main.c managed.c network.c
\
obfs_main.c protocol.c sha256.c
\
socks.c status.c util.c
\
protocols/dummy.c protocols/obfs2.c
LOCAL_STATIC_LIBRARIES
:=
libevent libcrypto
LOCAL_MODULE
:=
obfsproxy
LOCAL_SRC_FILES
:=
$(
addprefix
obfsproxy/,
$(OBFSPROXY_SOURCES)
)
LOCAL_CFLAGS
:=
-O2
-g
-I
$(LOCAL_PATH)
/obfsproxy
LOCAL_CFLAGS
:=
-O2
-g
-I
$(LOCAL_PATH)
/obfsproxy
\
-I
$(LOCAL_PATH)
/libevent/include
\
-I
$(LOCAL_PATH)
/libevent
\
-I
$(LOCAL_PATH)
/openssl/include
include
$(BUILD_EXECUTABLE)
...
...
jni/libevent/buffer.c
View file @
620d48df
...
...
@@ -90,6 +90,7 @@
#include "evthread-internal.h"
#include "evbuffer-internal.h"
#include "bufferevent-internal.h"
#include "event-internal.h"
/* some systems do not have MAP_FAILED */
#ifndef MAP_FAILED
...
...
jni/libevent/config.h
View file @
620d48df
...
...
@@ -273,7 +273,7 @@
#define HAVE_SYS_PARAM_H 1
/* Define to 1 if you have the <sys/queue.h> header file. */
/* #undef HAVE_SYS_QUEUE_H */
#define HAVE_SYS_QUEUE_H 1
/* Define to 1 if you have the <sys/select.h> header file. */
#define HAVE_SYS_SELECT_H 1
...
...
@@ -303,7 +303,7 @@
#define HAVE_SYS_WAIT_H 1
/* Define if TAILQ_FOREACH is defined in <sys/queue.h> */
#define TAILQ_FOREACH 1
/* #undef TAILQ_FOREACH */
/* Define if timeradd is defined in <sys/time.h> */
#define HAVE_TIMERADD 1
...
...
jni/libevent/include/Makefile.am
deleted
100644 → 0
View file @
5c58ed98
# include/Makefile.am for libevent
# Copyright 2000-2007 Niels Provos
# Copyright 2007-2012 Niels Provos and Nick Mathewson
#
# See LICENSE for copying information.
AUTOMAKE_OPTIONS
=
foreign
EVENT2_EXPORT
=
\
event2/buffer.h
\
event2/buffer_compat.h
\
event2/bufferevent.h
\
event2/bufferevent_compat.h
\
event2/bufferevent_ssl.h
\
event2/bufferevent_struct.h
\
event2/dns.h
\
event2/dns_compat.h
\
event2/dns_struct.h
\
event2/event.h
\
event2/event_compat.h
\
event2/event_struct.h
\
event2/http.h
\
event2/http_compat.h
\
event2/http_struct.h
\
event2/keyvalq_struct.h
\
event2/listener.h
\
event2/rpc.h
\
event2/rpc_compat.h
\
event2/rpc_struct.h
\
event2/tag.h
\
event2/tag_compat.h
\
event2/thread.h
\
event2/util.h
EXTRA_SRC
=
$(EVENT2_EXPORT)
## Without the nobase_ prefixing, Automake would strip "event2/" from
## the source header filename to derive the installed header filename.
## With nobase_ the installed path is $(includedir)/event2/ev*.h.
if
INSTALL_LIBEVENT
nobase_include_HEADERS
=
$(EVENT2_EXPORT)
nobase_nodist_include_HEADERS
=
./event2/event-config.h
else
noinst_HEADERS
=
$(EVENT2_EXPORT)
nodist_noinst_HEADERS
=
./event2/event-config.h
endif
jni/libevent/include/Makefile.in
deleted
100644 → 0
View file @
5c58ed98
This diff is collapsed.
Click to expand it.
jni/libevent/include/event2/event-config.h
View file @
620d48df
...
...
@@ -316,7 +316,7 @@
#define _EVENT_HAVE_SYS_WAIT_H 1
/* Define if TAILQ_FOREACH is defined in <sys/queue.h> */
#define _EVENT_HAVE_TAILQFOREACH 1
/* #undef _EVENT_HAVE_TAILQFOREACH */
/* Define if timeradd is defined in <sys/time.h> */
#define _EVENT_HAVE_TIMERADD 1
...
...
jni/obfsproxy/micro-revision.i
0 → 100644
View file @
620d48df
"94ebc4c3edf1e3e5"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment