mvordeme wrote: 
> Restarting the LMS moved the counters a little.
> 
> > 
Code:
--------------------
  >   > tc@piCoreServer:~$ head -n2 /proc/net/netstat | cut -d' ' -f 51-55
  > TCPAbortOnData TCPAbortOnClose TCPAbortOnMemory TCPAbortOnTimeout 
TCPAbortOnLinger
  > 191 3667 46 503 0
--------------------
> > 

Nothing too significant - so I don't think issue is at TCP network
level, the "CLOSE_WAIT" need to be checked.

I'm not sure of the Tidal and new AAC support details, but within Perl,
normally a TCP connection is an "object". 
TCP conection is closed when an explicit "close" is performed or when
TCP connection object is destroyed (i.e. no variable has a references to
it).
Object will be destroyed as part of garbage collection so there can be
delays.

However, if by accident there is still a reference to the TCP object,
the connection will remain open i.e. probably CLOSE_WAIT.


------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=113321

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to