Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - fix that history order | Nalin Dahyabhai | 2009-04-27 | 1 | -3/+3 | |
| | ||||||
* | - history reordering | Nalin Dahyabhai | 2009-04-27 | 1 | -3/+3 | |
| | ||||||
* | - bump to 0.11slapi-nis-0.11 | Nalin Dahyabhai | 2009-04-27 | 2 | -2/+5 | |
| | ||||||
* | - fix type mismatch warnings | Nalin Dahyabhai | 2009-04-27 | 4 | -25/+28 | |
| | ||||||
* | - fix some crashes by dereferencing uninitialized pointers when | Nalin Dahyabhai | 2009-04-27 | 2 | -0/+27 | |
| | | | | retrieving information from a map fails | |||||
* | - merge package history | Nalin Dahyabhai | 2009-04-27 | 1 | -1/+23 | |
| | ||||||
* | - merge the changelog note about the recent mass rebuild | Nalin Dahyabhai | 2009-03-04 | 1 | -0/+3 | |
| | ||||||
* | - bump version to 0.10slapi-nis-0.10 | Nalin Dahyabhai | 2009-03-04 | 2 | -2/+5 | |
| | ||||||
* | - add a brief summary of what's in here in the README file | Nalin Dahyabhai | 2009-03-04 | 3 | -2/+13 | |
| | | | | - package the README and NEWS files | |||||
* | - add UPG examples | Nalin Dahyabhai | 2009-03-04 | 2 | -0/+13 | |
| | ||||||
* | - add an example user-private-group set | Nalin Dahyabhai | 2009-03-04 | 1 | -1/+14 | |
| | ||||||
* | - note that the NIS server recursively resolves group membership by default | Nalin Dahyabhai | 2009-03-04 | 1 | -0/+1 | |
| | ||||||
* | - note that ifeq compares values using the server's matching rules | Nalin Dahyabhai | 2009-03-04 | 1 | -1/+2 | |
| | ||||||
* | - make the defaults use recursive support for attribute values | Nalin Dahyabhai | 2009-03-04 | 1 | -4/+4 | |
| | ||||||
* | - Remove the note about logging, as I think the right things are logged | Nalin Dahyabhai | 2009-03-04 | 1 | -3/+0 | |
| | | | | as fatal now. | |||||
* | - add a NEWS file | Nalin Dahyabhai | 2009-03-04 | 1 | -0/+24 | |
| | ||||||
* | - reject client requests > 64k in size | Nalin Dahyabhai | 2009-03-04 | 1 | -1/+13 | |
| | ||||||
* | - assume that super-large fragments are an error | Nalin Dahyabhai | 2009-02-12 | 1 | -0/+9 | |
| | ||||||
* | - drop a debug message | Nalin Dahyabhai | 2009-02-12 | 2 | -8/+3 | |
| | | | | - default to not using libtirpc | |||||
* | - move client socket creation here, so that we don't have to know how to | Nalin Dahyabhai | 2009-02-12 | 2 | -183/+375 | |
| | | | | | | | | | | do it elsewhere - refactor the send/receive logic out so that it can be used for either rpcbind or portmap - try to connect to rpcbind over a local socket first, else assume we have to use portmap over IP - use our own rpcb encode/decode function to avoid mixing the one from libtirpc with the rest of libc's XDR functions -- THAT WOULD BE BAD | |||||
* | - handle cases where our RPC library doesn't support v6 clients so well | Nalin Dahyabhai | 2009-02-12 | 1 | -9/+18 | |
| | ||||||
* | - handle argument order and count changing for portmap registration functions | Nalin Dahyabhai | 2009-02-12 | 1 | -115/+66 | |
| | | | | | - pass IPPROTO_XXX instead of SOCK_XXX to registration function - if we're registering/unregistering IPv6, also register/unregister IPv4 | |||||
* | - fix being able to disable tcp-wrappers | Nalin Dahyabhai | 2009-02-12 | 1 | -12/+19 | |
| | | | | - check for clnttcp6_create(), from a v6-capable RPC library | |||||
* | - learn about tirpc, offer a v6 option | Nalin Dahyabhai | 2009-02-11 | 2 | -8/+18 | |
| | ||||||
* | - first (non-working) pass at registering with rpcbind | Nalin Dahyabhai | 2009-02-11 | 3 | -20/+173 | |
| | ||||||
* | - link with libnsl or libtirpc, not both | Nalin Dahyabhai | 2009-02-11 | 1 | -3/+3 | |
| | ||||||
* | - don't pull in libnsl if we're using libtirpc | Nalin Dahyabhai | 2009-02-11 | 1 | -1/+9 | |
| | ||||||
* | - fix strict-aliasing errors | Nalin Dahyabhai | 2009-02-11 | 1 | -10/+17 | |
| | ||||||
* | - use our own bind-reserve-port helper, which should work with either | Nalin Dahyabhai | 2009-02-11 | 4 | -60/+108 | |
| | | | | | ipv4 or ipv6 sockets - make portmap_register()/portmap_unregister() require the address family | |||||
* | - remove unnecessary include | Nalin Dahyabhai | 2009-02-11 | 2 | -2/+0 | |
| | ||||||
* | - use tirpc cflags if they're set, link with libtirpc if we found it, | Nalin Dahyabhai | 2009-02-11 | 1 | -1/+6 | |
| | | | | always build the portmap example client | |||||
* | - check for libtirpc unless told not to | Nalin Dahyabhai | 2009-02-11 | 1 | -0/+16 | |
| | ||||||
* | - add -fstrict-aliasing to the flags we use | Nalin Dahyabhai | 2009-02-11 | 1 | -1/+1 | |
| | ||||||
* | - take a stab at documenting %ifeq() | Nalin Dahyabhai | 2009-02-11 | 1 | -0/+21 | |
| | ||||||
* | - merge discovered values rather than straight-out adding them, so that | Nalin Dahyabhai | 2008-12-08 | 1 | -8/+9 | |
| | | | | the duplicates don't show up in the constructed entry | |||||
* | - actually, entries in this map referring to other entries in the | Nalin Dahyabhai | 2008-12-03 | 1 | -9/+0 | |
| | | | | same map deserve to be updated, too | |||||
* | - add some comments for later | Nalin Dahyabhai | 2008-12-03 | 1 | -2/+6 | |
| | ||||||
* | - referred netgroup members are working now | Nalin Dahyabhai | 2008-12-03 | 4 | -0/+4 | |
| | ||||||
* | - test detection of changes to attributes munged by other plugins | Nalin Dahyabhai | 2008-12-03 | 9 | -0/+526 | |
| | ||||||
* | - fix the userRoot, so that the group entries show up at all | Nalin Dahyabhai | 2008-12-03 | 3 | -3/+39 | |
| | ||||||
* | - check update catching for deref and referred | Nalin Dahyabhai | 2008-12-03 | 9 | -0/+302 | |
| | ||||||
* | - whoops, that's an object plugin now | Nalin Dahyabhai | 2008-12-03 | 2 | -2/+2 | |
| | ||||||
* | - don't use a DN as the right-side of a search filter, since the | Nalin Dahyabhai | 2008-12-03 | 1 | -30/+82 | |
| | | | | server doesn't know that the attribute should have DN syntax | |||||
* | - note where we search for configuration data | Nalin Dahyabhai | 2008-12-03 | 1 | -0/+4 | |
| | ||||||
* | - fix a logic error when determining if an entry which contains an | Nalin Dahyabhai | 2008-12-03 | 1 | -4/+5 | |
| | | | | attrribute used in %referred() needs other things to be updated | |||||
* | - give callback registration the ability to return errors | Nalin Dahyabhai | 2008-12-03 | 5 | -16/+128 | |
| | | | | | - make the nis plugin register two types of internal plugins, since it can't just be a postop plugin any more | |||||
* | - add backend_shr_internal_postop_init(), move internal postop | Nalin Dahyabhai | 2008-12-03 | 2 | -18/+35 | |
| | | | | registration to it, let callback registration return error codes | |||||
* | - point out that attributes which are used to hold DNs should be indexed | Nalin Dahyabhai | 2008-12-03 | 1 | -0/+12 | |
| | ||||||
* | - update autogen so that it works again on my dev box | Nalin Dahyabhai | 2008-12-03 | 1 | -1/+5 | |
| | ||||||
* | - hook our postop callbacks onto internal changes, too | Nalin Dahyabhai | 2008-12-03 | 1 | -0/+20 | |
| |