Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixed function descriptions | Martin Willi | 2011-08-08 | 1 | -2/+2 | |
| | ||||||
* | Moved PEN to libstrongswan Doxygen group. | Tobias Brunner | 2011-08-03 | 1 | -1/+1 | |
| | ||||||
* | Doxygen group for BIO added. | Tobias Brunner | 2011-08-03 | 1 | -0/+3 | |
| | ||||||
* | File lists in Android.mk files updated. | Tobias Brunner | 2011-07-29 | 1 | -0/+2 | |
| | ||||||
* | Fixed host_create_from_subnet when no prefix is given. | Tobias Brunner | 2011-07-29 | 1 | -1/+1 | |
| | ||||||
* | Added missing include in mysql plugin. | Tobias Brunner | 2011-07-26 | 1 | -0/+1 | |
| | | | | This was previously pulled in via linked_list.h->iterator.h->library.h. | |||||
* | Readded docs for some arguments to global functions. | Tobias Brunner | 2011-07-21 | 4 | -11/+17 | |
| | | | | Those were overzealously removed in 28623fc5389829858c78c759a214aa5c64ea26c6. | |||||
* | fixed some more misspellings | Andreas Steffen | 2011-07-20 | 1 | -1/+1 | |
| | ||||||
* | Fixed common misspellings. | Tobias Brunner | 2011-07-20 | 19 | -25/+25 | |
| | | | | Mostly found by 'codespell'. | |||||
* | Added linked_list_t.has_more which checks if any elements follow an ↵ | Tobias Brunner | 2011-07-06 | 2 | -0/+19 | |
| | | | | enumerator's current position. | |||||
* | Make sure the enumerator stops after all items have been enumerated. | Tobias Brunner | 2011-07-06 | 2 | -4/+23 | |
| | | | | | This also changes how insert_before behaves, before enumeration items are inserted first, after enumeration last. | |||||
* | Linked list style cleanups | Martin Willi | 2011-07-06 | 1 | -47/+46 | |
| | ||||||
* | Finally removed deprecated iterator_t. | Tobias Brunner | 2011-07-06 | 6 | -356/+22 | |
| | ||||||
* | Removed unneeded and confusing insert_after method from linked_list_t. | Tobias Brunner | 2011-07-06 | 2 | -25/+6 | |
| | ||||||
* | Replaced more complex iterator usages. | Tobias Brunner | 2011-07-06 | 1 | -23/+13 | |
| | ||||||
* | Added a function to reset the enumerator of a linked list. | Tobias Brunner | 2011-07-06 | 2 | -0/+14 | |
| | ||||||
* | Replaced pkcs7_t.create_certificate_iterator with enumerator. | Tobias Brunner | 2011-07-06 | 2 | -8/+8 | |
| | | | | The method is currently not used. | |||||
* | Replaced simple iterator usages. | Tobias Brunner | 2011-07-06 | 4 | -24/+25 | |
| | ||||||
* | "this" removed from comments. | Tobias Brunner | 2011-07-06 | 8 | -18/+4 | |
| | ||||||
* | Added a replace function to linked_list_t. | Tobias Brunner | 2011-07-06 | 2 | -0/+24 | |
| | ||||||
* | Added an insert_after and insert_before function to linked_list_t. | Tobias Brunner | 2011-07-06 | 2 | -43/+91 | |
| | ||||||
* | Migrated linked_list_t to INIT/METHOD macros. | Tobias Brunner | 2011-07-06 | 1 | -174/+119 | |
| | ||||||
* | Don't install the libraries directly in lib/. | Tobias Brunner | 2011-07-05 | 2 | -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 Brunner | 2011-06-08 | 1 | -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 Brunner | 2011-06-07 | 1 | -2/+4 | |
| | | | | time_t is not necessarily of type int. | |||||
* | fixed IP range to subnet conversion in ts_to_subnet() | Andreas Steffen | 2011-06-03 | 1 | -6/+7 | |
| | ||||||
* | make IMC/IMV pairs independent of libcharon | Andreas Steffen | 2011-06-01 | 3 | -0/+80 | |
| | ||||||
* | Provide recursive mutex' just in case the PKCS#11 library requires it | Martin Willi | 2011-06-01 | 1 | -1/+1 | |
| | ||||||
* | renamed tls_reader|writer to bio_* and moved to libstrongswan | Andreas Steffen | 2011-05-31 | 5 | -125/+126 | |
| | ||||||
* | fixed type | Andreas Steffen | 2011-05-31 | 4 | -0/+704 | |
| | ||||||
* | added DBG_IMC and DBG_IMV debug options | Andreas Steffen | 2011-05-29 | 2 | -0/+8 | |
| | ||||||
* | Use better packing of leak-detective memory_header to align pointers | Martin Willi | 2011-05-25 | 1 | -5/+5 | |
| | ||||||
* | Summarize leaks with identical backtraces, as we do it with memusage | Martin Willi | 2011-05-25 | 1 | -88/+98 | |
| | ||||||
* | Fix strict aliasing warning | Martin Willi | 2011-05-25 | 1 | -1/+1 | |
| | ||||||
* | Keep count of remaining elements to enumerate in hashtable_t. | Tobias Brunner | 2011-05-24 | 1 | -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 Brunner | 2011-05-24 | 1 | -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 bytes | Martin Willi | 2011-05-24 | 1 | -5/+8 | |
| | ||||||
* | Fix some warnings triggered by gcc 4.6 -Wunused-but-set-variable | Martin Willi | 2011-05-19 | 4 | -7/+13 | |
| | ||||||
* | Update working thread count without allocation. | Tobias Brunner | 2011-05-16 | 1 | -22/+15 | |
| | ||||||
* | Make sure working thread count is correctly updated | Tobias Brunner | 2011-05-16 | 1 | -4/+23 | |
| | ||||||
* | Use CRITICAL job priority class for long running dispatcher jobs | Martin Willi | 2011-05-16 | 2 | -3/+4 | |
| | ||||||
* | Introduce a highest priority job for critical thread services | Martin Willi | 2011-05-16 | 2 | -2/+5 | |
| | ||||||
* | Added a callback_job constructor supporting custom priorities | Martin Willi | 2011-05-16 | 2 | -4/+36 | |
| | ||||||
* | Count number of threads active in each class, and reserve threads only if ↵ | Martin Willi | 2011-05-16 | 2 | -17/+66 | |
| | | | | none active | |||||
* | Reserve threads for job priority classes based on strongswan.conf options | Martin Willi | 2011-05-16 | 1 | -1/+17 | |
| | ||||||
* | Added job priority enum names | Martin Willi | 2011-05-16 | 4 | -2/+29 | |
| | ||||||
* | Processor job scheduling respects job priority classes | Martin Willi | 2011-05-16 | 2 | -13/+47 | |
| | ||||||
* | Introduce priority classes for jobs | Martin Willi | 2011-05-16 | 2 | -2/+30 | |
| | ||||||
* | Added a leak detective method to report current memory usage with backtraces | Martin Willi | 2011-05-16 | 2 | -0/+101 | |
| | ||||||
* | Make leak detective public | Martin Willi | 2011-05-16 | 3 | -18/+8 | |
| |