summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/105/socket/1949
blob: 5e93079bb44c27b473a17eec7913f3341a536007 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
socket: 0.935
device: 0.862
instruction: 0.801
network: 0.668
graphic: 0.646
mistranslation: 0.523
assembly: 0.495
semantic: 0.433
vnc: 0.401
KVM: 0.267
other: 0.250
boot: 0.222

chardev zombie TCP session
Description of problem:
When user terminates TCP session ungracefully (eg: power-cycle or network cable disconnect), the TCP session keeps in established status forever. In this state, new sessions can't access the chardev, since the zombie TCP session keeps exclusive access to chardev.
Steps to reproduce:
1.Establish client session to chardev TCP socket.  
2.Power-off the client machine.  
3.Establish a new client session  
4.Observe that old TCP session is never killed and new session can connect but not interact with chardev.
Additional information:
Suggestions to resolve this and improve the chardev feature:
- enable TCP keep-alive for chardev server.
- allow multiple client sessions concurrently, where chardev output is broadcasted to all client sessions, and chardev input is shared by all clients.