Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3313426f authored by Dan Albert's avatar Dan Albert
Browse files

File header cleanup.

 * sysdeps.h should always be included first.
 * TRACE_TAG needs to be defined before anything is included.
 * Some files were missing copyright headers.
 * Save precious bytes on my SSD by removing useless whitespace.

Change-Id: I88980e6e00b5be1093806cf286740d9e4a033b94
parent b4ebc475
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -16,6 +16,9 @@

#define TRACE_TAG TRACE_ADB

#include "sysdeps.h"
#include "adb.h"

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
@@ -27,8 +30,6 @@
#include <sys/time.h>
#include <stdint.h>

#include "sysdeps.h"
#include "adb.h"
#include "adb_auth.h"
#include "adb_io.h"
#include "adb_listeners.h"
+4 −3
Original line number Diff line number Diff line
@@ -16,6 +16,9 @@

#define TRACE_TAG TRACE_ADB

#include "sysdeps.h"
#include "adb_auth.h"

#include <errno.h>
#include <stdio.h>
#include <string.h>
@@ -23,9 +26,7 @@
#include <unistd.h>

#include "adb.h"
#include "adb_auth.h"
#include "transport.h"
#include "sysdeps.h"

int auth_enabled = 0;

+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,8 @@
#ifndef __ADB_AUTH_H
#define __ADB_AUTH_H

#include "adb.h"

#ifdef __cplusplus
extern "C" {
#endif
+8 −8
Original line number Diff line number Diff line
@@ -14,23 +14,23 @@
 * limitations under the License.
 */

#define TRACE_TAG TRACE_AUTH

#include "sysdeps.h"
#include "adb_auth.h"

#include <resolv.h>
#include <stdio.h>
#include <string.h>

#include "sysdeps.h"

#include "adb.h"
#include "adb_auth.h"
#include "cutils/list.h"
#include "cutils/sockets.h"
#include "fdevent.h"
#include "mincrypt/rsa.h"
#include "mincrypt/sha.h"
#include "transport.h"

#define TRACE_TAG TRACE_AUTH

#include "adb.h"
#include "fdevent.h"
#include "transport.h"

struct adb_public_key {
    struct listnode node;
+6 −6
Original line number Diff line number Diff line
@@ -14,8 +14,14 @@
 * limitations under the License.
 */

#define TRACE_TAG TRACE_AUTH

#include "sysdeps.h"
#include "adb_auth.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#ifdef _WIN32
#  ifndef WIN32_LEAN_AND_MEAN
@@ -28,11 +34,8 @@
#  include <sys/stat.h>
#  include <unistd.h>
#endif
#include <string.h>

#include "sysdeps.h"
#include "adb.h"
#include "adb_auth.h"

/* HACK: we need the RSAPublicKey struct
 * but RSA_verify conflits with openssl */
@@ -52,12 +55,9 @@
#include <openssl/base64.h>
#endif

#define TRACE_TAG TRACE_AUTH

#define ANDROID_PATH   ".android"
#define ADB_KEY_FILE   "adbkey"


struct adb_private_key {
    struct listnode node;
    RSA *rsa;
Loading