iana portlist updated.
git-svn-id: file:///svn/unbound/trunk@1380
be551aaa-1e26-0410-a405-
d3ace91eadb9
int i;
for(i=0; i<daemon->num; i++)
if(i!=thr) {
- tube_delete(daemon->workers[i]->cmd);
- daemon->workers[i]->cmd = NULL;
+ if(i==0) {
+ /* only close read part, need to write stats */
+ tube_close_read(daemon->workers[i]->cmd);
+ } else {
+ /* complete close channel to others */
+ tube_delete(daemon->workers[i]->cmd);
+ daemon->workers[i]->cmd = NULL;
+ }
}
}
+3 December 2008: Wouter
+ - Fix problem reported by Jaco Engelbrecht where unbound-control stats
+ freezes up unbound if this was compiled without threading, and
+ was using multiple processes.
+ - iana portlist updated.
+
1 December 2008: Wouter
- SElinux policy files in contrib/selinux for the unbound daemon,
by Paul Wouters and Adam Tkac.
2184,
2185,
2186,
+2187,
2190,
2191,
2192,