diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-10-16 14:33:28 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-10-24 15:06:18 +0200 |
commit | fdee6b5f5a7d711d68a77088b1e757fb6452bdee (patch) | |
tree | 08d92e92e532edbf326eadf738f74be6a7289e26 /src/libstrongswan | |
parent | 2e7cc07ecde933f52d2d16bf84596ba6da66ebc9 (diff) | |
download | strongswan-fdee6b5f5a7d711d68a77088b1e757fb6452bdee.tar.bz2 strongswan-fdee6b5f5a7d711d68a77088b1e757fb6452bdee.tar.xz |
Moved packet_t and tun_device_t to networking folder
Diffstat (limited to 'src/libstrongswan')
-rw-r--r-- | src/libstrongswan/Android.mk | 7 | ||||
-rw-r--r-- | src/libstrongswan/Makefile.am | 14 | ||||
-rw-r--r-- | src/libstrongswan/networking/packet.c (renamed from src/libstrongswan/utils/packet.c) | 0 | ||||
-rw-r--r-- | src/libstrongswan/networking/packet.h (renamed from src/libstrongswan/utils/packet.h) | 2 | ||||
-rw-r--r-- | src/libstrongswan/networking/tun_device.c (renamed from src/libstrongswan/utils/tun_device.c) | 0 | ||||
-rw-r--r-- | src/libstrongswan/networking/tun_device.h (renamed from src/libstrongswan/utils/tun_device.h) | 2 |
6 files changed, 14 insertions, 11 deletions
diff --git a/src/libstrongswan/Android.mk b/src/libstrongswan/Android.mk index fb224a28b..c627447e3 100644 --- a/src/libstrongswan/Android.mk +++ b/src/libstrongswan/Android.mk @@ -22,14 +22,15 @@ credentials/sets/cert_cache.c credentials/sets/mem_cred.c \ credentials/sets/callback_cred.c credentials/auth_cfg.c database/database.c \ database/database_factory.c fetcher/fetcher.c fetcher/fetcher_manager.c eap/eap.c \ ipsec/ipsec_types.c \ -networking/host.c networking/host_resolver.c \ +networking/host.c networking/host_resolver.c networking/packet.c \ +networking/tun_device.c \ pen/pen.c plugins/plugin_loader.c plugins/plugin_feature.c processing/jobs/job.c \ processing/jobs/callback_job.c processing/processor.c processing/scheduler.c \ selectors/traffic_selector.c threading/thread.c threading/thread_value.c \ threading/mutex.c threading/semaphore.c threading/rwlock.c threading/spinlock.c \ -utils.c utils/packet.c utils/identification.c utils/lexparser.c \ +utils.c utils/identification.c utils/lexparser.c \ utils/linked_list.c utils/blocking_queue.c utils/hashtable.c utils/enumerator.c \ -utils/optionsfrom.c utils/capabilities.c utils/backtrace.c utils/tun_device.c +utils/optionsfrom.c utils/capabilities.c utils/backtrace.c # adding the plugin source files diff --git a/src/libstrongswan/Makefile.am b/src/libstrongswan/Makefile.am index 4b8279f7a..62649d9ec 100644 --- a/src/libstrongswan/Makefile.am +++ b/src/libstrongswan/Makefile.am @@ -20,14 +20,15 @@ credentials/sets/cert_cache.c credentials/sets/mem_cred.c \ credentials/sets/callback_cred.c credentials/auth_cfg.c database/database.c \ database/database_factory.c fetcher/fetcher.c fetcher/fetcher_manager.c eap/eap.c \ ipsec/ipsec_types.c \ -networking/host.c networking/host_resolver.c \ +networking/host.c networking/host_resolver.c networking/packet.c \ +networking/tun_device.c \ pen/pen.c plugins/plugin_loader.c plugins/plugin_feature.c processing/jobs/job.c \ processing/jobs/callback_job.c processing/processor.c processing/scheduler.c \ selectors/traffic_selector.c threading/thread.c threading/thread_value.c \ threading/mutex.c threading/semaphore.c threading/rwlock.c threading/spinlock.c \ -utils.c utils/packet.c utils/identification.c utils/lexparser.c \ +utils.c utils/identification.c utils/lexparser.c \ utils/linked_list.c utils/blocking_queue.c utils/hashtable.c utils/enumerator.c \ -utils/optionsfrom.c utils/capabilities.c utils/backtrace.c utils/tun_device.c +utils/optionsfrom.c utils/capabilities.c utils/backtrace.c if USE_DEV_HEADERS strongswan_includedir = ${dev_headers} @@ -56,16 +57,17 @@ credentials/sets/mem_cred.h credentials/sets/callback_cred.h \ credentials/auth_cfg.h credentials/credential_set.h credentials/cert_validator.h \ database/database.h database/database_factory.h fetcher/fetcher.h \ fetcher/fetcher_manager.h eap/eap.h pen/pen.h ipsec/ipsec_types.h \ -networking/host.h networking/host_resolver.h \ +networking/host.h networking/host_resolver.h networking/packet.h \ +networking/tun_device.h \ plugins/plugin_loader.h plugins/plugin.h plugins/plugin_feature.h \ processing/jobs/job.h processing/jobs/callback_job.h processing/processor.h \ processing/scheduler.h selectors/traffic_selector.h \ threading/thread.h threading/thread_value.h \ threading/mutex.h threading/condvar.h threading/spinlock.h threading/semaphore.h \ threading/rwlock.h threading/rwlock_condvar.h threading/lock_profiler.h \ -utils.h utils/packet.h utils/identification.h utils/lexparser.h \ +utils.h utils/identification.h utils/lexparser.h \ utils/linked_list.h utils/blocking_queue.h utils/hashtable.h utils/enumerator.h \ -utils/optionsfrom.h utils/capabilities.h utils/backtrace.h utils/tun_device.h \ +utils/optionsfrom.h utils/capabilities.h utils/backtrace.h \ utils/leak_detective.h integrity_checker.h endif diff --git a/src/libstrongswan/utils/packet.c b/src/libstrongswan/networking/packet.c index a2c329d60..a2c329d60 100644 --- a/src/libstrongswan/utils/packet.c +++ b/src/libstrongswan/networking/packet.c diff --git a/src/libstrongswan/utils/packet.h b/src/libstrongswan/networking/packet.h index b6e28199a..6fb9cece2 100644 --- a/src/libstrongswan/utils/packet.h +++ b/src/libstrongswan/networking/packet.h @@ -17,7 +17,7 @@ /** * @defgroup packet packet - * @{ @ingroup utils + * @{ @ingroup networking */ #ifndef PACKET_H_ diff --git a/src/libstrongswan/utils/tun_device.c b/src/libstrongswan/networking/tun_device.c index 36f3359c0..36f3359c0 100644 --- a/src/libstrongswan/utils/tun_device.c +++ b/src/libstrongswan/networking/tun_device.c diff --git a/src/libstrongswan/utils/tun_device.h b/src/libstrongswan/networking/tun_device.h index be97432ff..b22a5d170 100644 --- a/src/libstrongswan/utils/tun_device.h +++ b/src/libstrongswan/networking/tun_device.h @@ -17,7 +17,7 @@ /** * @defgroup tun_device tun_device - * @{ @ingroup utils + * @{ @ingroup networking */ #ifndef TUN_DEVICE_H_ |