aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed function descriptionsMartin Willi2011-08-081-2/+2
|
* Moved PEN to libstrongswan Doxygen group.Tobias Brunner2011-08-031-1/+1
|
* Doxygen group for BIO added.Tobias Brunner2011-08-031-0/+3
|
* File lists in Android.mk files updated.Tobias Brunner2011-07-291-0/+2
|
* Fixed host_create_from_subnet when no prefix is given.Tobias Brunner2011-07-291-1/+1
|
* Added missing include in mysql plugin.Tobias Brunner2011-07-261-0/+1
| | | | This was previously pulled in via linked_list.h->iterator.h->library.h.
* Readded docs for some arguments to global functions.Tobias Brunner2011-07-214-11/+17
| | | | Those were overzealously removed in 28623fc5389829858c78c759a214aa5c64ea26c6.
* fixed some more misspellingsAndreas Steffen2011-07-201-1/+1
|
* Fixed common misspellings.Tobias Brunner2011-07-2019-25/+25
| | | | Mostly found by 'codespell'.
* Added linked_list_t.has_more which checks if any elements follow an ↵Tobias Brunner2011-07-062-0/+19
| | | | enumerator's current position.
* Make sure the enumerator stops after all items have been enumerated.Tobias Brunner2011-07-062-4/+23
| | | | | This also changes how insert_before behaves, before enumeration items are inserted first, after enumeration last.
* Linked list style cleanupsMartin Willi2011-07-061-47/+46
|
* Finally removed deprecated iterator_t.Tobias Brunner2011-07-066-356/+22
|
* Removed unneeded and confusing insert_after method from linked_list_t.Tobias Brunner2011-07-062-25/+6
|
* Replaced more complex iterator usages.Tobias Brunner2011-07-061-23/+13
|
* Added a function to reset the enumerator of a linked list.Tobias Brunner2011-07-062-0/+14
|
* Replaced pkcs7_t.create_certificate_iterator with enumerator.Tobias Brunner2011-07-062-8/+8
| | | | The method is currently not used.
* Replaced simple iterator usages.Tobias Brunner2011-07-064-24/+25
|
* "this" removed from comments.Tobias Brunner2011-07-068-18/+4
|
* Added a replace function to linked_list_t.Tobias Brunner2011-07-062-0/+24
|
* Added an insert_after and insert_before function to linked_list_t.Tobias Brunner2011-07-062-43/+91
|
* Migrated linked_list_t to INIT/METHOD macros.Tobias Brunner2011-07-061-174/+119
|
* Don't install the libraries directly in lib/.Tobias Brunner2011-07-052-2/+3
| | | | | Instead use a subdirectory (prefix/lib/ipsec by default). Also moved the plugins from libexec to a subdirectory of that dir.
* Prevent deadlock while shutting down thread pool.Tobias Brunner2011-06-081-2/+2
| | | | | | | | | During destruction the main thread locks the mutex in processor_t and waits on a condvar for threads to have terminated. Because the mutex has also to be locked to decrement the thread count the condvar cannot be signaled before doing that as otherwise the main thread might already be waiting to join the threads while locking the mutex and thus causing a deadlock.
* Properly print time differences.Tobias Brunner2011-06-071-2/+4
| | | | time_t is not necessarily of type int.
* fixed IP range to subnet conversion in ts_to_subnet()Andreas Steffen2011-06-031-6/+7
|
* make IMC/IMV pairs independent of libcharonAndreas Steffen2011-06-013-0/+80
|
* Provide recursive mutex' just in case the PKCS#11 library requires itMartin Willi2011-06-011-1/+1
|
* renamed tls_reader|writer to bio_* and moved to libstrongswanAndreas Steffen2011-05-315-125/+126
|
* fixed typeAndreas Steffen2011-05-314-0/+704
|
* added DBG_IMC and DBG_IMV debug optionsAndreas Steffen2011-05-292-0/+8
|
* Use better packing of leak-detective memory_header to align pointersMartin Willi2011-05-251-5/+5
|
* Summarize leaks with identical backtraces, as we do it with memusageMartin Willi2011-05-251-88/+98
|
* Fix strict aliasing warningMartin Willi2011-05-251-1/+1
|
* Keep count of remaining elements to enumerate in hashtable_t.Tobias Brunner2011-05-241-1/+8
| | | | | This improves performance during enumeration as not all buckets have to be checked.
* Replaced linked_list_t usage in hashtable_t with custom list implementation.Tobias Brunner2011-05-241-124/+92
| | | | | | | | With this change inserting elements into a hashtable_t object is now nearly as fast as inserting them into a linked_list_t object, whereas before it was up to seven times slower. Additionally, the memory footprint of a hashtable is now significantly smaller. The lookup performance is also nearly doubled.
* Fix memwipe() of leading unaligned bytesMartin Willi2011-05-241-5/+8
|
* Fix some warnings triggered by gcc 4.6 -Wunused-but-set-variableMartin Willi2011-05-194-7/+13
|
* Update working thread count without allocation.Tobias Brunner2011-05-161-22/+15
|
* Make sure working thread count is correctly updatedTobias Brunner2011-05-161-4/+23
|
* Use CRITICAL job priority class for long running dispatcher jobsMartin Willi2011-05-162-3/+4
|
* Introduce a highest priority job for critical thread servicesMartin Willi2011-05-162-2/+5
|
* Added a callback_job constructor supporting custom prioritiesMartin Willi2011-05-162-4/+36
|
* Count number of threads active in each class, and reserve threads only if ↵Martin Willi2011-05-162-17/+66
| | | | none active
* Reserve threads for job priority classes based on strongswan.conf optionsMartin Willi2011-05-161-1/+17
|
* Added job priority enum namesMartin Willi2011-05-164-2/+29
|
* Processor job scheduling respects job priority classesMartin Willi2011-05-162-13/+47
|
* Introduce priority classes for jobsMartin Willi2011-05-162-2/+30
|
* Added a leak detective method to report current memory usage with backtracesMartin Willi2011-05-162-0/+101
|
* Make leak detective publicMartin Willi2011-05-163-18/+8
|