summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSaya Sugiura <ssugiura@jp.adit-jv.com>2019-08-01 09:19:00 +0900
committerSaya Sugiura <ssugiura@jp.adit-jv.com>2019-08-01 09:19:00 +0900
commit8673795b845e461e42920e44cdf70a5361457e8b (patch)
treea47fd0352169cc815980df1e93006293e9cb6488 /include
parent618920f01b65dfeffe76092057998808163ccb11 (diff)
downloadDLT-daemon-8673795b845e461e42920e44cdf70a5361457e8b.tar.gz
Revert "Add option in dlt.conf for bindAddress to specific IPs (#130)"
This reverts commit e8716cc5c950e50411b23a7a6cafa3c063c59e90.
Diffstat (limited to 'include')
-rw-r--r--include/dlt/dlt_common.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/dlt/dlt_common.h b/include/dlt/dlt_common.h
index 06f91bf..94177e3 100644
--- a/include/dlt/dlt_common.h
+++ b/include/dlt/dlt_common.h
@@ -73,7 +73,6 @@
\{
*/
-# include <netinet/in.h>
# include <stdio.h>
# ifdef __linux__
# include <linux/limits.h>
@@ -811,17 +810,6 @@ typedef struct
int size;
} DltBufferBlockHead;
-# ifdef DLT_USE_IPv6
-# define DLT_IP_SIZE (INET6_ADDRSTRLEN)
-# else
-# define DLT_IP_SIZE (INET_ADDRSTRLEN)
-# endif
-typedef struct DltBindAddress
-{
- char ip[DLT_IP_SIZE];
- struct DltBindAddress *next;
-} DltBindAddress_t;
-
# define DLT_MESSAGE_ERROR_OK 0
# define DLT_MESSAGE_ERROR_UNKNOWN -1
# define DLT_MESSAGE_ERROR_SIZE -2