<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/source3/utils/net_cache.c, branch v3-5-test</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/'/>
<entry>
<title>s3 net: Fix compile warnings</title>
<updated>2010-01-20T10:48:42+00:00</updated>
<author>
<name>Kai Blin</name>
<email>kai@samba.org</email>
</author>
<published>2010-01-19T10:43:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=c9ffceedfd1bb8a21ade44e33eebc7e7426b1e84'/>
<id>c9ffceedfd1bb8a21ade44e33eebc7e7426b1e84</id>
<content type='text'>
(cherry picked from commit 66de52c4f4527ef43cfaf11c55616ec7602cce85)

Part 8/9 of a fix for bug #7039 (German translation of net is not complete).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 66de52c4f4527ef43cfaf11c55616ec7602cce85)

Part 8/9 of a fix for bug #7039 (German translation of net is not complete).
</pre>
</div>
</content>
</entry>
<entry>
<title>s3/net: split up some printable stings to ease i18n</title>
<updated>2010-01-20T10:46:11+00:00</updated>
<author>
<name>Björn Jacke</name>
<email>bj@sernet.de</email>
</author>
<published>2010-01-18T22:39:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=f70106f13a2722b958f95c6d6209788d06c69a07'/>
<id>f70106f13a2722b958f95c6d6209788d06c69a07</id>
<content type='text'>
If we put strings like "Usage:" into separate _() macros and not the whole
"Usage:..." string we can cover much more messages by only one single
translation. The drawback is that the message in the sources looks less pretty.
(cherry picked from commit bd3c922e2bc1a163efc1d8c9cb59578bebb79616)

Part 4/9 of a fix for bug #7039 (German translation of net is not complete).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If we put strings like "Usage:" into separate _() macros and not the whole
"Usage:..." string we can cover much more messages by only one single
translation. The drawback is that the message in the sources looks less pretty.
(cherry picked from commit bd3c922e2bc1a163efc1d8c9cb59578bebb79616)

Part 4/9 of a fix for bug #7039 (German translation of net is not complete).
</pre>
</div>
</content>
</entry>
<entry>
<title>s3 net: i18n support for net cache</title>
<updated>2009-07-29T21:59:39+00:00</updated>
<author>
<name>Kai Blin</name>
<email>kai@samba.org</email>
</author>
<published>2009-07-29T21:59:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=358a55e50d0d9143ffdb2bc3df6701307c1fb3df'/>
<id>358a55e50d0d9143ffdb2bc3df6701307c1fb3df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make gencache more stable</title>
<updated>2009-07-15T08:55:20+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2009-07-13T15:04:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=8a17cd810fa6cbe7b11139ff0f6f24e7bacd318b'/>
<id>8a17cd810fa6cbe7b11139ff0f6f24e7bacd318b</id>
<content type='text'>
This provides a compromise between stability and performance: gencache is a
persistent database these days that for performance reasons can not use tdb
transactions for all writes. This patch splits up gencache into gencache.tdb
and gencache_notrans.tdb. gencache_notrans is used with CLEAR_IF_FIRST, writes
to it don't use transactions. By default every 5 minutes and when a program
exits, all entries from _notrans.tdb are transferred to gencache.tdb in one
transaction.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This provides a compromise between stability and performance: gencache is a
persistent database these days that for performance reasons can not use tdb
transactions for all writes. This patch splits up gencache into gencache.tdb
and gencache_notrans.tdb. gencache_notrans is used with CLEAR_IF_FIRST, writes
to it don't use transactions. By default every 5 minutes and when a program
exits, all entries from _notrans.tdb are transferred to gencache.tdb in one
transaction.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove gencache_init/shutdown</title>
<updated>2009-07-15T08:55:20+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2009-07-10T10:24:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=3edcd55bf140d09833284ba5a0f04f86b04ef7dc'/>
<id>3edcd55bf140d09833284ba5a0f04f86b04ef7dc</id>
<content type='text'>
gencache_get/set/del/iterate call gencache_init() internally anyway. And we've
been very lazy calling gencache_shutdown, so this seems not really required.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
gencache_get/set/del/iterate call gencache_init() internally anyway. And we've
been very lazy calling gencache_shutdown, so this seems not really required.
</pre>
</div>
</content>
</entry>
<entry>
<title>S3: Fixes for coverity issues.</title>
<updated>2009-02-10T22:43:14+00:00</updated>
<author>
<name>todd stecher</name>
<email>todd.stecher@gmail.com</email>
</author>
<published>2009-02-09T21:25:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=9d4d2f70cbf83919a11c194c8234de269c5d91ee'/>
<id>9d4d2f70cbf83919a11c194c8234de269c5d91ee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix all warnings in source3 with gcc4.3.</title>
<updated>2009-01-01T02:06:57+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2009-01-01T02:06:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=07e0094365e8dc360a83eec2e7cf9b1d5d8d6d00'/>
<id>07e0094365e8dc360a83eec2e7cf9b1d5d8d6d00</id>
<content type='text'>
Jeremy.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Jeremy.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Return timed out entries from gencache_get if timeout param != NULL"</title>
<updated>2008-07-11T15:53:25+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2008-07-11T15:44:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=cc78ea5d09f2d8e338f0626fb1215f06ee7e1bbe'/>
<id>cc78ea5d09f2d8e338f0626fb1215f06ee7e1bbe</id>
<content type='text'>
This reverts commit 2954b2be563149380e1fae7fe088b98d6cbd42e7.
(This used to be commit 77ab2fb306a7ad59447a3e1591c2af03447e09c5)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 2954b2be563149380e1fae7fe088b98d6cbd42e7.
(This used to be commit 77ab2fb306a7ad59447a3e1591c2af03447e09c5)
</pre>
</div>
</content>
</entry>
<entry>
<title>Return timed out entries from gencache_get if timeout param != NULL</title>
<updated>2008-07-03T13:59:19+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2008-07-03T13:58:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=c4503f5658282169f38ac87fd2d82a9b67273037'/>
<id>c4503f5658282169f38ac87fd2d82a9b67273037</id>
<content type='text'>
net cache get was the only one interested in the timeout. That single caller
can take care of the timeout itself then.

With this API change idmap_cache.c can be converted to gencache.
(This used to be commit 2954b2be563149380e1fae7fe088b98d6cbd42e7)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
net cache get was the only one interested in the timeout. That single caller
can take care of the timeout itself then.

With this API change idmap_cache.c can be converted to gencache.
(This used to be commit 2954b2be563149380e1fae7fe088b98d6cbd42e7)
</pre>
</div>
</content>
</entry>
<entry>
<title>net: Rename functable3 to functable, get rid of old functables</title>
<updated>2008-06-10T07:48:21+00:00</updated>
<author>
<name>Kai Blin</name>
<email>kai@samba.org</email>
</author>
<published>2008-06-07T00:25:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=255bdb26025a5025bc60637dd924f6ec71c49ee5'/>
<id>255bdb26025a5025bc60637dd924f6ec71c49ee5</id>
<content type='text'>
(This used to be commit bb7c5fc4ec77db4073d3beccf12af12910b6bd07)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(This used to be commit bb7c5fc4ec77db4073d3beccf12af12910b6bd07)
</pre>
</div>
</content>
</entry>
</feed>
