Displaying 4 results from an estimated 4 matches for "authunix_create_default".
2007 Aug 02
3
NFS rquota support
For v1.1, probably applies to v1.0 code pretty easily too:
http://hg.dovecot.org/dovecot/rev/078d9dde99c8
The other rquota patches had authunix_create_default() call. Is this
needed/useful?
The client is now always created+destroyed for each quota lookup. I'd
think it would be faster if it was created only once, but does it then
break something?
If the above isn't done, clnt_create() could be replaced with
clntudp_create() and have the struct s...
2008 Jun 18
3
v1.1.rc11 released
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz.sig
This is the final v1.1 RC. Tomorrow I'll change only the version number,
update the documentation and call it v1.1.0. But please test this anyway
to make sure I didn't happen to break anything since rc10 :)
- dovecot-uidlist is now recreated if it results in file
2008 Jun 18
3
v1.1.rc11 released
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz.sig
This is the final v1.1 RC. Tomorrow I'll change only the version number,
update the documentation and call it v1.1.0. But please test this anyway
to make sure I didn't happen to break anything since rc10 :)
- dovecot-uidlist is now recreated if it results in file
2006 Feb 03
0
rquotad (NFS) quota plugin
...= 6;
+ tout.tv_usec = 0;
+
+ *(long *)&rhost.sin_addr = *(long *)hent->h_addr;
+ rhost.sin_family = AF_INET;
+ rhost.sin_port = 0;
+
+ clnt = clntudp_create(&rhost, RQUOTAPROG, RQUOTAVERS, tout, &sock);
+ if (!clnt)
+ return rpc_createerr.cf_stat;
+
+ clnt->cl_auth = authunix_create_default();
+ tout.tv_sec = 25;
+ tout.tv_usec = 0;
+ cstat = clnt_call(clnt, RQUOTAPROC_GETQUOTA, xdr_getquota_args,
+ qargs, xdr_getquota_rslt, qres, tout);
+ clnt_destroy(clnt);
+ return cstat;
+ }
+
+ static void rquotad_quota_root_error_alloc(struct rquotad_quota_root *root,
+ const...