Bug Fixes

Bug Fixes
master
msmannan00 2021-03-04 15:09:23 +05:00
parent 61122498ea
commit 4dfef0f5e7
678 changed files with 21060 additions and 49 deletions

View File

@ -292,6 +292,14 @@ public class geckoClients
}
}
public void manualDownloadWithName(String url, String file, AppCompatActivity context){
Uri downloadURL = Uri.parse(url);
/*EXTERNAL STORAGE REQUEST*/
if(helperMethod.checkPermissions(context)){
mSession.downloadRequestedFile(downloadURL,file);
}
}
public void downloadFile()
{
if(helperMethod.checkPermissions(context)){
@ -299,6 +307,13 @@ public class geckoClients
}
}
public void downloadFile(String mURL)
{
if(helperMethod.checkPermissions(context)){
mSession.downloadRequestedFile();
}
}
/*Session Updates*/
public void onUpdateFont(){

View File

@ -44,7 +44,7 @@ class geckoDownloadManager
downloadFile = response.filename != null ? response.filename : downloadURL.getLastPathSegment();
event.invokeObserver(Arrays.asList(0,session.getSessionID()), enums.etype.progress_update);
event.invokeObserver(Arrays.asList(downloadFile,session.getSessionID(),downloadURL), enums.etype.download_file_popup);
event.invokeObserver(Arrays.asList(downloadFile.toString(),session.getSessionID(),downloadURL.toString()), enums.etype.download_file_popup);
}
Uri getDownloadURL(){

View File

@ -1099,6 +1099,12 @@ public class homeController extends AppCompatActivity implements ComponentCallba
mGeckoClient.manual_download(url,this);
}
public void onManualDownloadFileName(String pURL, String pPath){
/*EXTERNAL STORAGE REQUEST*/
mGeckoClient.manualDownloadWithName(pURL,pPath,this);
}
public AdView getBannerAd()
{
return mBannerAds;
@ -1518,7 +1524,7 @@ public class homeController extends AppCompatActivity implements ComponentCallba
mHomeViewController.onUpdateSearchBar(dataToStr(data.get(0),mGeckoClient.getSession().getCurrentURL()),false, true);
}
else if(e_type.equals(enums.etype.download_file_popup)){
pluginController.getInstance().onMessageManagerInvoke(Arrays.asList(dataToStr(data.get(0)), homeController.this), M_DOWNLOAD_FILE);
onManualDownloadFileName((String) data.get(2), (String) data.get(0));
}
else if(e_type.equals(enums.etype.on_full_screen)){
boolean status = (Boolean)data.get(0);

View File

@ -34,6 +34,7 @@ import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.app.AppCompatDelegate;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.core.content.ContextCompat;
import androidx.core.graphics.ColorUtils;
import androidx.core.widget.NestedScrollView;
import androidx.recyclerview.widget.RecyclerView;
import com.darkweb.genesissearchengine.appManager.historyManager.historyRowModel;
@ -649,17 +650,17 @@ class homeViewController
mNewTab.setTextColor(helperMethod.invertedGrayColor(mColor));
GradientDrawable mGradientDrawable = new GradientDrawable();
mGradientDrawable.setColor(helperMethod.invertedShadeColor(mColor,0.85f));
mGradientDrawable.setColor(ColorUtils.blendARGB(helperMethod.invertedShadeColor(mColor,0.90f), Color.BLACK, 0.2f));
mGradientDrawable.setCornerRadius(helperMethod.pxFromDp(7));
mSearchbar.setBackground(mGradientDrawable);
GradientDrawable gradientDrawable1 = new GradientDrawable();
gradientDrawable1.setColor(helperMethod.invertedShadeColor(mColor,0.85f));
gradientDrawable1.setColor(ColorUtils.blendARGB(helperMethod.invertedShadeColor(mColor,0.90f), Color.BLACK, 0.2f));
gradientDrawable1.setCornerRadius(helperMethod.pxFromDp(4));
gradientDrawable1.setStroke(helperMethod.pxFromDp(2), mColor);
GradientDrawable gradientDrawable2 = new GradientDrawable();
gradientDrawable2.setColor(helperMethod.invertedShadeColor(mColor,0.85f));
gradientDrawable2.setColor(ColorUtils.blendARGB(helperMethod.invertedShadeColor(mColor,0.90f), Color.BLACK, 0.2f));
gradientDrawable2.setCornerRadius(helperMethod.pxFromDp(4));
gradientDrawable2.setStroke(helperMethod.pxFromDp(2), helperMethod.invertedGrayColor(mColor));
@ -683,10 +684,10 @@ class homeViewController
}
if(helperMethod.isColorDark(mColor)){
mContext.getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
}else {
View decorView = mContext.getWindow().getDecorView(); //set status background black
decorView.setSystemUiVisibility(decorView.getSystemUiVisibility() & ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
}else {
mContext.getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
}
}
else{

View File

@ -35,6 +35,7 @@ import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import androidx.core.app.ShareCompat;
import androidx.core.content.ContextCompat;
import androidx.core.graphics.ColorUtils;
import com.darkweb.genesissearchengine.constants.enums;
import com.darkweb.genesissearchengine.constants.keys;
@ -259,9 +260,8 @@ public class helperMethod
public static int invertedShadeColor(int pColor, float pPercent) {
int mColor = pColor;
double darkness = 1-(0.299*Color.red(mColor) + 0.587*Color.green(mColor) + 0.114*Color.blue(mColor))/255;
if(darkness>=0.75){
if(darkness==1){
if(ColorUtils.calculateLuminance(pColor) <= 0.5){
if(ColorUtils.calculateLuminance(pColor)==1){
return Color.DKGRAY;
}
int a = Color.alpha(mColor);
@ -281,9 +281,7 @@ public class helperMethod
}
public static int invertedGrayColor(int pColor) {
int mColor = pColor;
double darkness = 1-(0.299*Color.red(mColor) + 0.587*Color.green(mColor) + 0.114*Color.blue(mColor))/255;
if(darkness>=0.75){
if(ColorUtils.calculateLuminance(pColor) <= 0.5){
return Color.WHITE;
}else{
return Color.BLACK;
@ -291,9 +289,7 @@ public class helperMethod
}
public static boolean isColorDark(int pColor) {
int mColor = pColor;
double darkness = 1-(0.299*Color.red(mColor) + 0.587*Color.green(mColor) + 0.114*Color.blue(mColor))/255;
if(darkness>=0.75){
if(ColorUtils.calculateLuminance(pColor) > 0.5){
return true;
}else{
return false;

View File

@ -502,6 +502,11 @@ class messageManager
rateApp();
break;
case M_DOWNLOAD_FILE :
/*VERIFIED*/
//downloadFileLongPress();
break;
case M_LONG_PRESS_DOWNLOAD :
/*VERIFIED*/
downloadFileLongPress();

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/holo_gray">
<item android:id="@android:id/background">
<shape android:shape="rectangle">
<gradient
android:angle="90"
android:endColor="@color/c_ripple_v3"
android:startColor="@color/c_ripple_v3"
android:type="linear" />
<corners android:topLeftRadius="4.0dp"
android:topRightRadius="4.0dp"/>
</shape>
</item>
</ripple>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 888 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 606 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -14,7 +14,7 @@
android:layout_height="match_parent"
android:layout_marginStart="5dp"
android:layout_marginTop="8dp"
android:paddingBottom="1px"
android:padding="3dp"
android:layout_marginEnd="5dp"
android:layout_marginBottom="20dp"
android:background="@xml/gx_side_menu"
@ -32,11 +32,9 @@
app:layout_constraintTop_toTopOf="parent">
<LinearLayout
android:layout_width="258dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:background="@color/c_ripple_v3"
android:background="@xml/gx_ripple_gray_top_bar"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent">
@ -112,9 +110,7 @@
android:id="@+id/menu11"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="0dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -158,9 +154,7 @@
android:id="@+id/menu7"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -195,9 +189,7 @@
android:id="@+id/menu8"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -232,9 +224,7 @@
android:id="@+id/pMenuOpenRecentTab"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -269,9 +259,7 @@
android:id="@+id/pMenuOpenNewTab"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -315,9 +303,7 @@
android:id="@+id/menu12"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -353,9 +339,7 @@
android:id="@+id/menu25"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -390,9 +374,7 @@
android:id="@+id/pMenuFind"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -427,9 +409,7 @@
android:id="@+id/menu26"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -490,9 +470,7 @@
android:id="@+id/menu6"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_side_item"
android:clickable="true"
android:focusable="true"
@ -527,9 +505,7 @@
android:id="@+id/pMenuQuit"
android:layout_width="match_parent"
android:layout_height="47dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:background="@xml/gx_ripple_gray_bottom"
android:clickable="true"
android:focusable="true"

View File

@ -190,7 +190,7 @@ public class OrbotService extends VpnService implements TorServiceConstants, Orb
}
private void showConnectedToTorNetworkNotification() {
showToolbarNotification(getString(R.string.status_activated), NOTIFY_ID, R.drawable.ic_stat_tor);
showToolbarNotification(getString(R.string.status_activated), NOTIFY_ID, R.drawable.ic_stat_tor_logo);
}
private boolean findExistingTorDaemon() {
@ -310,7 +310,7 @@ public class OrbotService extends VpnService implements TorServiceConstants, Orb
public int onStartCommand(Intent intent, int flags, int startId) {
self = this;
showToolbarNotification("", NOTIFY_ID, R.drawable.ic_stat_tor);
showToolbarNotification("", NOTIFY_ID, R.drawable.ic_stat_tor_logo);
if (intent != null)
exec(new IncomingIntentRouter(intent));
@ -535,7 +535,7 @@ public class OrbotService extends VpnService implements TorServiceConstants, Orb
}).start();
//mVpnManager = new OrbotVpnManager(this);
mVpnManager = new OrbotVpnManager(this);
} catch (Exception e) {
//what error here
@ -795,7 +795,7 @@ public class OrbotService extends VpnService implements TorServiceConstants, Orb
String version = prefs.getString(PREF_BINARY_TOR_VERSION_INSTALLED, null);
logNotice("checking binary version: " + version);
showToolbarNotification(getString(R.string.status_starting_up), NOTIFY_ID, R.drawable.ic_stat_tor);
showToolbarNotification(getString(R.string.status_starting_up), NOTIFY_ID, R.drawable.ic_stat_tor_logo);
//sendCallbackLogMessage(getString(R.string.status_starting_up));
//logNotice(getString(R.string.status_starting_up));
@ -1165,7 +1165,7 @@ public class OrbotService extends VpnService implements TorServiceConstants, Orb
new Thread() {
public void run() {
try {
int iconId = R.drawable.ic_stat_tor;
int iconId = R.drawable.ic_stat_tor_logo;
if (conn != null) {
if (mCurrentStatus.equals(STATUS_ON) && Prefs.expandedNotifications())

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
./obj/local/arm64-v8a/objs/ancillary/libancillary/fd_recv.o: \
jni\libancillary\fd_recv.c jni\libancillary\ancillary.h
jni\libancillary\ancillary.h:

View File

@ -0,0 +1,4 @@
./obj/local/arm64-v8a/objs/ancillary/libancillary/fd_send.o: \
jni\libancillary\fd_send.c jni\libancillary\ancillary.h
jni\libancillary\ancillary.h:

View File

@ -0,0 +1,32 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/cache.o: jni\pdnsd\src\cache.c \
jni\pdnsd\config.h jni\pdnsd\src\cache.h jni\pdnsd\src\ipvers.h \
jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h \
jni\pdnsd\src\hash.h jni\pdnsd\src\helpers.h jni\pdnsd\src\error.h \
jni\pdnsd\src\thread.h jni\pdnsd\src\debug.h
jni\pdnsd\config.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\hash.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\debug.h:

View File

@ -0,0 +1,33 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/conf-parser.o: \
jni\pdnsd\src\conf-parser.c jni\pdnsd\config.h jni\pdnsd\src\ipvers.h \
jni\pdnsd\src\rr_types.h jni\pdnsd\src\conff.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\consts.h \
jni\pdnsd\src\cache.h jni\pdnsd\src\dns.h jni\pdnsd\src\helpers.h \
jni\pdnsd\src\netdev.h jni\pdnsd\src\conf-keywords.h \
jni\pdnsd\src\conf-parser.h
jni\pdnsd\config.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\consts.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\netdev.h:
jni\pdnsd\src\conf-keywords.h:
jni\pdnsd\src\conf-parser.h:

View File

@ -0,0 +1,33 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/conff.o: jni\pdnsd\src\conff.c \
jni\pdnsd\config.h jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h \
jni\pdnsd\src\conff.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\consts.h \
jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h jni\pdnsd\src\dns.h \
jni\pdnsd\src\conf-parser.h jni\pdnsd\src\servers.h \
jni\pdnsd\src\icmp.h
jni\pdnsd\config.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\consts.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conf-parser.h:
jni\pdnsd\src\servers.h:
jni\pdnsd\src\icmp.h:

View File

@ -0,0 +1,9 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/consts.o: \
jni\pdnsd\src\consts.c jni\pdnsd\config.h jni\pdnsd\src\consts.h \
jni\pdnsd\src\rr_types.h
jni\pdnsd\config.h:
jni\pdnsd\src\consts.h:
jni\pdnsd\src\rr_types.h:

View File

@ -0,0 +1,27 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/debug.o: jni\pdnsd\src\debug.c \
jni\pdnsd\config.h jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h \
jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h \
jni\pdnsd\src\error.h jni\pdnsd\src\thread.h
jni\pdnsd\config.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:

View File

@ -0,0 +1,27 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/dns.o: jni\pdnsd\src\dns.c \
jni\pdnsd\config.h jni\pdnsd\src\error.h jni\pdnsd\src\thread.h \
jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h jni\pdnsd\src\ipvers.h \
jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h
jni\pdnsd\config.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:

View File

@ -0,0 +1,35 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/dns_answer.o: \
jni\pdnsd\src\dns_answer.c jni\pdnsd\config.h jni\pdnsd\src\ipvers.h \
jni\pdnsd\src\rr_types.h jni\pdnsd\src\thread.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h \
jni\pdnsd\src\dns_answer.h jni\pdnsd\src\dns_query.h \
jni\pdnsd\src\cache.h jni\pdnsd\src\conff.h jni\pdnsd\src\helpers.h \
jni\pdnsd\src\error.h jni\pdnsd\src\debug.h
jni\pdnsd\config.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\dns_answer.h:
jni\pdnsd\src\dns_query.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\debug.h:

View File

@ -0,0 +1,40 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/dns_query.o: \
jni\pdnsd\src\dns_query.c jni\pdnsd\config.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\consts.h \
jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h \
jni\pdnsd\src\dns_query.h jni\pdnsd\src\cache.h jni\pdnsd\src\dns.h \
jni\pdnsd\src\conff.h jni\pdnsd\src\servers.h jni\pdnsd\src\helpers.h \
jni\pdnsd\src\netdev.h jni\pdnsd\src\error.h jni\pdnsd\src\thread.h \
jni\pdnsd\src\debug.h
jni\pdnsd\config.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\consts.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\dns_query.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\servers.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\netdev.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\debug.h:

View File

@ -0,0 +1,27 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/error.o: jni\pdnsd\src\error.c \
jni\pdnsd\config.h jni\pdnsd\src\error.h jni\pdnsd\src\thread.h \
jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h jni\pdnsd\src\ipvers.h \
jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h
jni\pdnsd\config.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:

View File

@ -0,0 +1,32 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/hash.o: jni\pdnsd\src\hash.c \
jni\pdnsd\config.h jni\pdnsd\src\hash.h jni\pdnsd\src\cache.h \
jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h \
jni\pdnsd\src\error.h jni\pdnsd\src\thread.h jni\pdnsd\src\helpers.h \
jni\pdnsd\src\consts.h
jni\pdnsd\config.h:
jni\pdnsd\src\hash.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\consts.h:

View File

@ -0,0 +1,27 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/helpers.o: \
jni\pdnsd\src\helpers.c jni\pdnsd\config.h jni\pdnsd\src\ipvers.h \
jni\pdnsd\src\rr_types.h jni\pdnsd\src\thread.h jni\pdnsd\src\error.h \
jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h
jni\pdnsd\config.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:

View File

@ -0,0 +1,34 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/icmp.o: jni\pdnsd\src\icmp.c \
jni\pdnsd\config.h jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h \
jni\pdnsd\src\icmp.h jni\pdnsd\src\error.h jni\pdnsd\src\thread.h \
jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h \
jni\pdnsd\src\servers.h jni\pdnsd\src\consts.h
jni\pdnsd\config.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\icmp.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\servers.h:
jni\pdnsd\src\consts.h:

View File

@ -0,0 +1,27 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/list.o: jni\pdnsd\src\list.c \
jni\pdnsd\config.h jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h \
jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h \
jni\pdnsd\src\error.h jni\pdnsd\src\thread.h
jni\pdnsd\config.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:

View File

@ -0,0 +1,44 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/main.o: jni\pdnsd\src\main.c \
jni\pdnsd\config.h jni\pdnsd\src\consts.h jni\pdnsd\src\cache.h \
jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h \
jni\pdnsd\src\status.h jni\pdnsd\src\servers.h \
jni\pdnsd\src\dns_answer.h jni\pdnsd\src\dns_query.h \
jni\pdnsd\src\error.h jni\pdnsd\src\thread.h jni\pdnsd\src\helpers.h \
jni\pdnsd\src\icmp.h jni\pdnsd\src\hash.h
jni\pdnsd\config.h:
jni\pdnsd\src\consts.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\status.h:
jni\pdnsd\src\servers.h:
jni\pdnsd\src\dns_answer.h:
jni\pdnsd\src\dns_query.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\icmp.h:
jni\pdnsd\src\hash.h:

View File

@ -0,0 +1,30 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/netdev.o: \
jni\pdnsd\src\netdev.c jni\pdnsd\config.h jni\pdnsd\src\ipvers.h \
jni\pdnsd\src\rr_types.h jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h \
jni\pdnsd\src\list.h jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h \
jni\pdnsd\src\conff.h jni\pdnsd\src\netdev.h jni\pdnsd\src\error.h \
jni\pdnsd\src\thread.h
jni\pdnsd\config.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\netdev.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\thread.h:

View File

@ -0,0 +1,23 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/rr_types.o: \
jni\pdnsd\src\rr_types.c jni\pdnsd\config.h jni\pdnsd\src\helpers.h \
jni\pdnsd\src\cache.h jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h \
jni\pdnsd\src\list.h jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h \
jni\pdnsd\src\conff.h
jni\pdnsd\config.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:

View File

@ -0,0 +1,39 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/servers.o: \
jni\pdnsd\src\servers.c jni\pdnsd\config.h jni\pdnsd\src\thread.h \
jni\pdnsd\src\error.h jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h \
jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h \
jni\pdnsd\src\servers.h jni\pdnsd\src\consts.h jni\pdnsd\src\icmp.h \
jni\pdnsd\src\netdev.h jni\pdnsd\src\dns_query.h
jni\pdnsd\config.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\servers.h:
jni\pdnsd\src\consts.h:
jni\pdnsd\src\icmp.h:
jni\pdnsd\src\netdev.h:
jni\pdnsd\src\dns_query.h:

View File

@ -0,0 +1,40 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/status.o: \
jni\pdnsd\src\status.c jni\pdnsd\config.h jni\pdnsd\src\ipvers.h \
jni\pdnsd\src\rr_types.h jni\pdnsd\src\status.h jni\pdnsd\src\conff.h \
jni\pdnsd\src\list.h jni\pdnsd\src\pdnsd_assert.h \
jni\pdnsd\src\thread.h jni\pdnsd\src\cache.h jni\pdnsd\src\dns.h \
jni\pdnsd\src\error.h jni\pdnsd\src\helpers.h jni\pdnsd\src\servers.h \
jni\pdnsd\src\consts.h jni\pdnsd\src\dns_answer.h \
jni\pdnsd\src\conf-parser.h
jni\pdnsd\config.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\status.h:
jni\pdnsd\src\conff.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\servers.h:
jni\pdnsd\src\consts.h:
jni\pdnsd\src\dns_answer.h:
jni\pdnsd\src\conf-parser.h:

View File

@ -0,0 +1,27 @@
./obj/local/arm64-v8a/objs/pdnsd/pdnsd/src/thread.o: \
jni\pdnsd\src\thread.c jni\pdnsd\config.h jni\pdnsd\src\thread.h \
jni\pdnsd\src\error.h jni\pdnsd\src\helpers.h jni\pdnsd\src\cache.h \
jni\pdnsd\src\ipvers.h jni\pdnsd\src\rr_types.h jni\pdnsd\src\list.h \
jni\pdnsd\src\pdnsd_assert.h jni\pdnsd\src\dns.h jni\pdnsd\src\conff.h
jni\pdnsd\config.h:
jni\pdnsd\src\thread.h:
jni\pdnsd\src\error.h:
jni\pdnsd\src\helpers.h:
jni\pdnsd\src\cache.h:
jni\pdnsd\src\ipvers.h:
jni\pdnsd\src\rr_types.h:
jni\pdnsd\src\list.h:
jni\pdnsd\src\pdnsd_assert.h:
jni\pdnsd\src\dns.h:
jni\pdnsd\src\conff.h:

View File

@ -0,0 +1,23 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/base/BLog.o: \
jni\..\..\..\..\external\badvpn\base\BLog.c \
jni\..\..\..\..\external\badvpn\base\BLog.h \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\base\BMutex.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\generated\blog_channels_defines.h \
jni\..\..\..\..\external\badvpn\generated\blog_channels_list.h
jni\..\..\..\..\external\badvpn\base\BLog.h:
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\base\BMutex.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\generated\blog_channels_defines.h:
jni\..\..\..\..\external\badvpn\generated\blog_channels_list.h:

View File

@ -0,0 +1,23 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/base/BLog_syslog.o: \
jni\..\..\..\..\external\badvpn\base\BLog_syslog.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\base\BLog_syslog.h \
jni\..\..\..\..\external\badvpn\base\BLog.h \
jni\..\..\..\..\external\badvpn\base\BMutex.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\generated\blog_channels_defines.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\base\BLog_syslog.h:
jni\..\..\..\..\external\badvpn\base\BLog.h:
jni\..\..\..\..\external\badvpn\base\BMutex.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\generated\blog_channels_defines.h:

View File

@ -0,0 +1,38 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/base/BPending.o: \
jni\..\..\..\..\external\badvpn\base\BPending.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\misc\offset.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_impl.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\misc\offset.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_impl.h:

View File

@ -0,0 +1,11 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/base/DebugObject.o: \
jni\..\..\..\..\external\badvpn\base\DebugObject.c \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:

View File

@ -0,0 +1,38 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/BufferWriter.o: \
jni\..\..\..\..\external\badvpn\flow\BufferWriter.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\flow\BufferWriter.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\flow\BufferWriter.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:

View File

@ -0,0 +1,56 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketBuffer.o: \
jni\..\..\..\..\external\badvpn\flow\PacketBuffer.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\misc\balloc.h \
jni\..\..\..\..\external\badvpn\misc\bsize.h \
jni\..\..\..\..\external\badvpn\misc\maxalign.h \
jni\..\..\..\..\external\badvpn\flow\PacketBuffer.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\structure\ChunkBuffer2.h \
jni\..\..\..\..\external\badvpn\misc\balign.h \
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\misc\balloc.h:
jni\..\..\..\..\external\badvpn\misc\bsize.h:
jni\..\..\..\..\external\badvpn\misc\maxalign.h:
jni\..\..\..\..\external\badvpn\flow\PacketBuffer.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\structure\ChunkBuffer2.h:
jni\..\..\..\..\external\badvpn\misc\balign.h:
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h:

View File

@ -0,0 +1,38 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketPassConnector.o: \
jni\..\..\..\..\external\badvpn\flow\PacketPassConnector.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassConnector.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassConnector.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:

View File

@ -0,0 +1,86 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketPassFairQueue.o: \
jni\..\..\..\..\external\badvpn\flow\PacketPassFairQueue.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\misc\offset.h \
jni\..\..\..\..\external\badvpn\misc\minmax.h \
jni\..\..\..\..\external\badvpn\misc\compare.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassFairQueue.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\structure\SAvl.h \
jni\..\..\..\..\external\badvpn\structure\CAvl.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\structure\LinkedList1.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassFairQueue_tree.h \
jni\..\..\..\..\external\badvpn\structure\SAvl_decl.h \
jni\..\..\..\..\external\badvpn\structure\SAvl_header.h \
jni\..\..\..\..\external\badvpn\structure\SAvl_tree.h \
jni\..\..\..\..\external\badvpn\structure\CAvl_decl.h \
jni\..\..\..\..\external\badvpn\structure\CAvl_header.h \
jni\..\..\..\..\external\badvpn\structure\CAvl_footer.h \
jni\..\..\..\..\external\badvpn\structure\SAvl_footer.h \
jni\..\..\..\..\external\badvpn\structure\SAvl_impl.h \
jni\..\..\..\..\external\badvpn\structure\CAvl_impl.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\misc\offset.h:
jni\..\..\..\..\external\badvpn\misc\minmax.h:
jni\..\..\..\..\external\badvpn\misc\compare.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassFairQueue.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\structure\SAvl.h:
jni\..\..\..\..\external\badvpn\structure\CAvl.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\structure\LinkedList1.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassFairQueue_tree.h:
jni\..\..\..\..\external\badvpn\structure\SAvl_decl.h:
jni\..\..\..\..\external\badvpn\structure\SAvl_header.h:
jni\..\..\..\..\external\badvpn\structure\SAvl_tree.h:
jni\..\..\..\..\external\badvpn\structure\CAvl_decl.h:
jni\..\..\..\..\external\badvpn\structure\CAvl_header.h:
jni\..\..\..\..\external\badvpn\structure\CAvl_footer.h:
jni\..\..\..\..\external\badvpn\structure\SAvl_footer.h:
jni\..\..\..\..\external\badvpn\structure\SAvl_impl.h:
jni\..\..\..\..\external\badvpn\structure\CAvl_impl.h:

View File

@ -0,0 +1,35 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketPassInterface.o: \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.c \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h:
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:

View File

@ -0,0 +1,65 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketProtoDecoder.o: \
jni\..\..\..\..\external\badvpn\flow\PacketProtoDecoder.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\misc\byteorder.h \
jni\..\..\..\..\external\badvpn\misc\minmax.h \
jni\..\..\..\..\external\badvpn\base\BLog.h \
jni\..\..\..\..\external\badvpn\base\BMutex.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\generated\blog_channels_defines.h \
jni\..\..\..\..\external\badvpn\flow\PacketProtoDecoder.h \
jni\..\..\..\..\external\badvpn\protocol\packetproto.h \
jni\..\..\..\..\external\badvpn\misc\packed.h \
jni\..\..\..\..\external\badvpn\flow\StreamRecvInterface.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h \
jni\..\..\..\..\external\badvpn\generated\blog_channel_PacketProtoDecoder.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\misc\byteorder.h:
jni\..\..\..\..\external\badvpn\misc\minmax.h:
jni\..\..\..\..\external\badvpn\base\BLog.h:
jni\..\..\..\..\external\badvpn\base\BMutex.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\generated\blog_channels_defines.h:
jni\..\..\..\..\external\badvpn\flow\PacketProtoDecoder.h:
jni\..\..\..\..\external\badvpn\protocol\packetproto.h:
jni\..\..\..\..\external\badvpn\misc\packed.h:
jni\..\..\..\..\external\badvpn\flow\StreamRecvInterface.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h:
jni\..\..\..\..\external\badvpn\generated\blog_channel_PacketProtoDecoder.h:

View File

@ -0,0 +1,50 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketProtoEncoder.o: \
jni\..\..\..\..\external\badvpn\flow\PacketProtoEncoder.c \
jni\..\..\..\..\external\badvpn\protocol\packetproto.h \
jni\..\..\..\..\external\badvpn\misc\packed.h \
jni\..\..\..\..\external\badvpn\misc\balign.h \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\misc\byteorder.h \
jni\..\..\..\..\external\badvpn\flow\PacketProtoEncoder.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h
jni\..\..\..\..\external\badvpn\protocol\packetproto.h:
jni\..\..\..\..\external\badvpn\misc\packed.h:
jni\..\..\..\..\external\badvpn\misc\balign.h:
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\misc\byteorder.h:
jni\..\..\..\..\external\badvpn\flow\PacketProtoEncoder.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:

View File

@ -0,0 +1,62 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketProtoFlow.o: \
jni\..\..\..\..\external\badvpn\flow\PacketProtoFlow.c \
jni\..\..\..\..\external\badvpn\protocol\packetproto.h \
jni\..\..\..\..\external\badvpn\misc\packed.h \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\flow\PacketProtoFlow.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\flow\BufferWriter.h \
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h \
jni\..\..\..\..\external\badvpn\flow\PacketProtoEncoder.h \
jni\..\..\..\..\external\badvpn\flow\PacketBuffer.h \
jni\..\..\..\..\external\badvpn\structure\ChunkBuffer2.h \
jni\..\..\..\..\external\badvpn\misc\balign.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h
jni\..\..\..\..\external\badvpn\protocol\packetproto.h:
jni\..\..\..\..\external\badvpn\misc\packed.h:
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\flow\PacketProtoFlow.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\flow\BufferWriter.h:
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:
jni\..\..\..\..\external\badvpn\flow\PacketProtoEncoder.h:
jni\..\..\..\..\external\badvpn\flow\PacketBuffer.h:
jni\..\..\..\..\external\badvpn\structure\ChunkBuffer2.h:
jni\..\..\..\..\external\badvpn\misc\balign.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h:

View File

@ -0,0 +1,35 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketRecvInterface.o: \
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.c \
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h:
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:

View File

@ -0,0 +1,41 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/PacketStreamSender.o: \
jni\..\..\..\..\external\badvpn\flow\PacketStreamSender.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\flow\PacketStreamSender.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h \
jni\..\..\..\..\external\badvpn\flow\StreamPassInterface.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\flow\PacketStreamSender.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:
jni\..\..\..\..\external\badvpn\flow\StreamPassInterface.h:

View File

@ -0,0 +1,50 @@
./obj/local/arm64-v8a/objs/tun2socks/__/__/__/__/external/badvpn/flow/SinglePacketBuffer.o: \
jni\..\..\..\..\external\badvpn\flow\SinglePacketBuffer.c \
jni\..\..\..\..\external\badvpn\misc\debug.h \
jni\..\..\..\..\external\badvpn\misc\balloc.h \
jni\..\..\..\..\external\badvpn\misc\bsize.h \
jni\..\..\..\..\external\badvpn\misc\maxalign.h \
jni\..\..\..\..\external\badvpn\flow\SinglePacketBuffer.h \
jni\..\..\..\..\external\badvpn\base\DebugObject.h \
jni\..\..\..\..\external\badvpn\misc\debugcounter.h \
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h \
jni\..\..\..\..\external\badvpn\base\BPending.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h \
jni\..\..\..\..\external\badvpn\misc\merge.h \
jni\..\..\..\..\external\badvpn\base\BPending_list.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h \
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h \
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h
jni\..\..\..\..\external\badvpn\misc\debug.h:
jni\..\..\..\..\external\badvpn\misc\balloc.h:
jni\..\..\..\..\external\badvpn\misc\bsize.h:
jni\..\..\..\..\external\badvpn\misc\maxalign.h:
jni\..\..\..\..\external\badvpn\flow\SinglePacketBuffer.h:
jni\..\..\..\..\external\badvpn\base\DebugObject.h:
jni\..\..\..\..\external\badvpn\misc\debugcounter.h:
jni\..\..\..\..\external\badvpn\flow\PacketRecvInterface.h:
jni\..\..\..\..\external\badvpn\base\BPending.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList.h:
jni\..\..\..\..\external\badvpn\misc\merge.h:
jni\..\..\..\..\external\badvpn\base\BPending_list.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_decl.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_header.h:
jni\..\..\..\..\external\badvpn\structure\SLinkedList_footer.h:
jni\..\..\..\..\external\badvpn\flow\PacketPassInterface.h:

Some files were not shown because too many files have changed in this diff Show More