mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 01:34:18 +00:00 
			
		
		
		
	Initialise log_fd to -1, prevents spurious disconnection of the client when it
ends up as fd 0 (likely if the server is started with "tmux start"). Also add some extra debugging messages to server.c.
This commit is contained in:
		
							
								
								
									
										3
									
								
								server.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								server.c
									
									
									
									
									
								
							@@ -110,6 +110,7 @@ server_create_client(int fd)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	ARRAY_ADD(&clients, c);
 | 
			
		||||
	log_debug("new client %d", fd);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Find client index. */
 | 
			
		||||
@@ -257,6 +258,7 @@ server_main(int srv_fd)
 | 
			
		||||
	time_t		 now, last;
 | 
			
		||||
 | 
			
		||||
	siginit();
 | 
			
		||||
	log_debug("server socket is %d", srv_fd);
 | 
			
		||||
 | 
			
		||||
	last = time(NULL);
 | 
			
		||||
 | 
			
		||||
@@ -901,6 +903,7 @@ server_lost_client(struct client *c)
 | 
			
		||||
		if (ARRAY_ITEM(&clients, i) == c)
 | 
			
		||||
			ARRAY_SET(&clients, i, NULL);
 | 
			
		||||
	}
 | 
			
		||||
	log_debug("lost client %d", c->ibuf.fd);
 | 
			
		||||
 | 
			
		||||
	tty_free(&c->tty);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user