Displaying 4 results from an estimated 4 matches for "conn_idle_all".
2005 Nov 09
9
A lot of IPC$ connections
Hello,
I am running a SuSE SLES9 Server with samba-3.0.14a, this server is acting
only as a printserver.
Printing is running well, but after a day I have a lot of IPC$ Sessions,
does this share have a important function? I there a timeout for this
sessions available?
This IPC$-Sessions alway asking my cups-server and it took a high amount of
cpu-load.
Any help is welcome!
regards
Franz
2005 Jul 07
1
'deadtime' in Samba 3.0.13
Hi,
I currently have deadtime = 15 in my smb.conf. This featured worked good to
disconnect clients that have been idle for > 15 minutes in the past. With
the 3.0.13 version, it seems to do nothing. As in, it just keeps the user
connected indefinitely.
Here is what I see when no one is currently at the office and everyone is
logged off their computer.
Thanks
[root@spicy p]#
2005 Nov 02
1
smbd processes never go away
I am having a problem with Samba 3.0.20b runninn on Fedora core 4, with a
2.6.11-1.1369_FC4smp kernel. Each time I open a connection a new smbd
process is forked. That is fine, but then that process never goes away,
even after the client has disconnected. Even though there are only a few
clients who make an smb connection to the server in question, dozens and
dozens of smbd processes are
2000 May 10
0
patche for samba-2.0.7/source/smbd/conn.c
..._open = 0;
+ cth.biggest_in_use = BIGGEST_NONE;
+ cth.smallest_released = SMALLEST_NONE;
}
/****************************************************************************
idle inactive connections
****************************************************************************/
BOOL conn_idle_all(time_t t, int deadtime)
{
- BOOL allidle = True;
- connection_struct *conn, *next;
+ BOOL allidle = True;
+ int i, num_passed;
- for (conn=Connections;conn;conn=next) {
- next=conn->next;
- /* close dirptrs on connections that are idle */
- if ((t-conn->lastused) > DPTR...