summaryrefslogtreecommitdiff
path: root/source4/lib/messaging/tests/messaging.c
AgeCommit message (Collapse)AuthorFilesLines
2011-10-13s4-messaging: Pass the loadparm context, not just the messaging pathAndrew Bartlett1-2/+2
This will allow the TDB layer to get at the lp_ctx for tdb options. Andrew Bartlett
2011-08-13s4:messaging: use tevent_ function names instead of legacy event_ onesSimo Sorce1-2/+2
2011-07-22s4-messaging: fixed the removal of messaging sockets in child tasksAndrew Tridgell1-5/+5
when a child task exits we were firing a destructor on any inherited messaging contexts, which could trigger a removal of the parents message socket and messaging database entry. This adds a new auto_remove flag to imessaging_init(), and exposes the cleanup code for use by the stream service. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Fri Jul 22 08:09:06 CEST 2011 on sn-devel-104
2011-05-03s4-messaging Rename messaging -> imessagingAndrew Bartlett1-17/+17
This avoid symbol and structure conflicts between Samba3 and Samba4, and chooses a less generic name. Andrew Bartlett
2010-12-11s4-smbtorture: Make test names lowercase and dot-separated.Jelmer Vernooij1-1/+1
This is consistent with the test names used by selftest, should make the names less confusing and easier to integrate with other tools. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Dec 11 04:16:13 CET 2010 on sn-devel-104
2010-07-16s4-loadparm: 2nd half of lp_ to lpcfg_ conversionAndrew Tridgell1-3/+3
this converts all callers that use the Samba4 loadparm lp_ calling convention to use the lpcfg_ prefix. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2010-05-18Finish removal of iconv_convenience in public API's.Jelmer Vernooij1-4/+1
2009-02-02s4:lib/messaging: s/private/private_dataStefan Metzmacher1-5/+5
metze
2008-12-29s4:lib/tevent: rename structsStefan Metzmacher1-1/+1
list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
2008-04-16Now that we don't create a new event context, don't free it.Andrew Bartlett1-1/+0
This previously would free the torture provided global event context. Andrew Bartlett (This used to be commit 664f2fc49f32a081f14638571ee0db01a7863347)
2008-02-04Rework cluster_id() to take an additional argument, as we needAndrew Bartlett1-5/+5
<node>.<pid>.<fd> to be unique in a prefork process environment. Andrew Bartlett and David Disseldorp (This used to be commit 931994a7f185bbc98924823e9e8cef1011dd0957)
2007-12-21r26441: Remove global_loadparm uses.Jelmer Vernooij1-2/+6
(This used to be commit 32007c6277efa46341da7741b749a98633d71640)
2007-12-21r26266: Remove more global_loadparm uses.Jelmer Vernooij1-7/+6
(This used to be commit 99113075c4a96679bcec4f4d6bba4acb3dee4245)
2007-12-21r25902: Move messaging tests to same directory as code.Jelmer Vernooij1-0/+143
(This used to be commit d174dcbb76f3079a5f536f841bfffab3d7cd51e9)