| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-11-05 | Bug fix. | Sam Varshavchik | |
| 2020-11-04 | gettext update. | Sam Varshavchik | |
| 2020-11-04 | Fix spec file. | Sam Varshavchik | |
| 2020-10-28 | Merge branch 'master'. | Sam Varshavchik | |
| 2020-10-28 | Clean up documentation | Sam Varshavchik | |
| 2020-10-28 | Fix LTO problem on Fedora | Sam Varshavchik | |
| 2020-10-27 | gcc fixes. | Sam Varshavchik | |
| 2020-10-27 | Update documentation | Sam Varshavchik | |
| 2020-10-27 | gpg update. | Sam Varshavchik | |
| 2020-10-27 | fflush before POP3 STARTTLS | Sam Varshavchik | |
| 2020-10-27 | Fix LTO failure on F33. | Sam Varshavchik | |
| 2020-10-26 | Make it possible to bind to a specific courier-unicode version. | Sam Varshavchik | |
| 2020-08-03 | Move declarations of Unicode directional markers to the public header file. | Sam Varshavchik | |
| 2020-08-02 | Add additional bi-directional related algorithm. | Sam Varshavchik | |
| Cleanup, remove markers, via unicode_bidi_cleanup() and unicode_bidi_extra_cleanup(). Re-embed directional markers, via unicode_bidi_logical_order(), unicode_bidi_embed() and unicode_bidi_embed_paragraph_level(). | |||
| 2020-07-12 | Bump version. | Sam Varshavchik | |
| 2020-07-12 | Implement unicode_canonical. | Sam Varshavchik | |
| Fixes biditest2. | |||
| 2020-07-12 | Pull in BidiCharacterTest.txt | Sam Varshavchik | |
| 2020-07-12 | Add emoji documentation. | Sam Varshavchik | |
| 2020-07-12 | API cleanup. | Sam Varshavchik | |
| Cleanup to use naming consistent with the spec. Exposed the underlying bidi character type. | |||
| 2020-07-12 | Documentation, C++ bindings, reorder. | Sam Varshavchik | |
| 2020-07-12 | Update documentation. | Sam Varshavchik | |
| Fix mkultcase.pl to be deterministic. | |||
| 2020-07-12 | Implement the Unicode bidirectional algorithm. | Sam Varshavchik | |
| 2020-07-12 | Add bidi property lookups. | Sam Varshavchik | |
| 2020-07-12 | Unicode 13 update. | Sam Varshavchik | |
| 2020-07-12 | Pass --nonet to xsltproc. | Sam Varshavchik | |
| 2020-06-17 | Bump version. | Sam Varshavchik | |
| 2020-05-18 | Update ChangeLog | Sam Varshavchik | |
| 2020-05-18 | Update maildrop standalone to new courier-authlib. | Sam Varshavchik | |
| 2020-05-18 | courier-authlib update. | Sam Varshavchik | |
| 2020-05-12 | Fix manual hostname checking. | Sam Varshavchik | |
| 2020-05-09 | Query for both A and TXT records. | Sam Varshavchik | |
| 2020-05-09 | Fix spurious message. | Sam Varshavchik | |
| 2020-05-08 | Restart query from the original hostname. | Sam Varshavchik | |
| 2020-05-08 | Tweaks to the return codes. | Sam Varshavchik | |
| 2020-05-07 | More simultaneous DNS query support. | Sam Varshavchik | |
| 2020-04-24 | Remove debugging message. | Sam Varshavchik | |
| 2020-04-21 | Reindent code. | Sam Varshavchik | |
| 2020-04-21 | Use parallel queries in rfc1035_resolve_multiple. | Sam Varshavchik | |
| 2020-04-21 | Add AC_PROG_CC_C99. | Sam Varshavchik | |
| 2020-04-21 | Add AC_PROG_CC_C99 | Sam Varshavchik | |
| 2020-04-20 | Fix regression with user parameter | Sam Varshavchik | |
| 2020-04-20 | Fix TLS client connections. | Sam Varshavchik | |
| 2020-04-19 | Bump version | Sam Varshavchik | |
| 2020-04-09 | Fix AXFR processing. | Sam Varshavchik | |
| 2020-04-09 | Separate tcp query into rfc1035_resolve_multiple_attempt_tcp. | Sam Varshavchik | |
| Move the check for the AXFR query into _idna, and call _tcp from there. Call _tcp from _multiple_attempt too, in case of truncation. | |||
| 2020-04-09 | Factor out rfc1035_resolve_multiple_attempt. | Sam Varshavchik | |
| The inner loop of rfc1035_resolve_multiple_idna becomes() rfc1035_resolve_multiple_attempt(). rfc1035_resolve_multiple_idna keeps the retry loop, and the loop that iterates over all NSes, then the inner part of the loop becomes rfc1035_resolve_multiple_attempt() which returns NULL on failure, keeping the loop going. A non-NULL return indicates success. The code that closes udpfd, and updates rfc1035-dns remains in rfc1035_resolve_multiple_idna(). | |||
| 2020-04-07 | Add rfc1035_udp_query_response_alloc_bis. | Sam Varshavchik | |
| 2020-04-07 | Refactor rfc1035_query_udp (2/2). | Sam Varshavchik | |
| Adds rfc1035_udp_query_multi(). rfc1035_query_udp is just a wrapper for it, now. | |||
| 2020-04-06 | Refactor rfc1035_query_udp (1/2). | Sam Varshavchik | |
| The struct rfc1035_udp_query_responses collects multiple UDP responses to concurrent UDP queries. rfc1035_udp_query_response_alloc() allocates it. rfc1035_udp_query_response_free() deletes it. Nobody else cares about rfc1035_recv_udp, make it static. The existing rfc1035_recv_udp code gets renamed as rfc1035_recv_one_udp_response, and receives a rfc1035_udp_query_responses pointer, and instead of returning a response, and its buflen, it reads a response, and finds an unanswered query, in rfc1035_udp_query_responses, for which this response is receives, and saves it there: loop over each query, and if it doesn't have its response yet, and the response's serial number matches the query's, store the query there, else throw it away. The replacement rfc1035_recv_udp wrapper rfc1035_udp_query_response_alloc-s, rfc1035_recv_one_udp_response, and fetches the received response out of it. then rfc1035_udp_query_response_free()s. | |||
| 2020-02-25 | Fix SSL cert authentication. | Sam Varshavchik | |
