OSDN Git Service

Remove incomplete FTP #defines and implementation
authorZach Johnson <zachoverflow@google.com>
Fri, 29 Aug 2014 23:03:20 +0000 (16:03 -0700)
committerAndre Eisenbach <eisenbach@google.com>
Mon, 16 Mar 2015 23:51:31 +0000 (16:51 -0700)
include/bt_target.h
main/bte_init.c

index de3fd84..436fa58 100644 (file)
@@ -2832,26 +2832,6 @@ Range: Minimum 12000 (12 secs) on BR/EDR when supporting PBF.
 
 /******************************************************************************
 **
-** FTP
-**
-******************************************************************************/
-
-#ifndef FTP_INCLUDED
-#define FTP_INCLUDED                FALSE
-#endif
-
-/* This is set to enable FTP client capabilities. */
-#ifndef FTP_CLIENT_INCLUDED
-#define FTP_CLIENT_INCLUDED         TRUE
-#endif
-
-/* This is set to enable FTP server capabilities. */
-#ifndef FTP_SERVER_INCLUDED
-#define FTP_SERVER_INCLUDED         TRUE
-#endif
-
-/******************************************************************************
-**
 ** XML Parser
 **
 ******************************************************************************/
index 3e3c1ad..16df2d2 100644 (file)
 #include "goep_util.h"
 #endif /* GOEP included */
 
-#if (defined(FTP_INCLUDED) && FTP_INCLUDED == TRUE)
-#include "ftp_api.h"
-#endif /* FTP */
-
 #if (defined(OPP_INCLUDED) && OPP_INCLUDED == TRUE)
 #include "opp_api.h"
 #endif /* OPP */
@@ -337,9 +333,6 @@ BT_API void BTE_InitStack(void)
 #endif /* GOEP */
 
 
-#if (defined(FTP_INCLUDED) && FTP_INCLUDED == TRUE)
-    FTP_Init();
-#endif
 #if (defined(OPP_INCLUDED) && OPP_INCLUDED == TRUE)
     OPP_Init();
 #endif