mirror of
				https://github.com/rofl0r/proxychains-ng.git
				synced 2025-11-04 00:56:03 +00:00 
			
		
		
		
	remove unused variable
This commit is contained in:
		@@ -567,9 +567,8 @@ int connect_proxy_chain(int sock, ip_type target_ip,
 | 
				
			|||||||
	unsigned int offset = 0;
 | 
						unsigned int offset = 0;
 | 
				
			||||||
	unsigned int alive_count = 0;
 | 
						unsigned int alive_count = 0;
 | 
				
			||||||
	unsigned int curr_len = 0;
 | 
						unsigned int curr_len = 0;
 | 
				
			||||||
	unsigned int curr_pos = 0;
 | 
					 | 
				
			||||||
	unsigned int looped = 0; // went back to start of list in RR mode
 | 
						unsigned int looped = 0; // went back to start of list in RR mode
 | 
				
			||||||
	int rr_loop_max = 14;
 | 
						unsigned int rr_loop_max = 14;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	p3 = &p4;
 | 
						p3 = &p4;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -606,10 +605,10 @@ int connect_proxy_chain(int sock, ip_type target_ip,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		case ROUND_ROBIN_TYPE:
 | 
							case ROUND_ROBIN_TYPE:
 | 
				
			||||||
			alive_count = calc_alive(pd, proxy_count);
 | 
								alive_count = calc_alive(pd, proxy_count);
 | 
				
			||||||
			curr_pos = offset = proxychains_proxy_offset;
 | 
								offset = proxychains_proxy_offset;
 | 
				
			||||||
			if(alive_count < max_chain)
 | 
								if(alive_count < max_chain)
 | 
				
			||||||
				goto error_more;
 | 
									goto error_more;
 | 
				
			||||||
                        PDEBUG("1:rr_offset = %d, curr_pos = %d\n", offset, curr_pos);
 | 
								PDEBUG("1:rr_offset = %d\n", offset);
 | 
				
			||||||
			/* Check from current RR offset til end */
 | 
								/* Check from current RR offset til end */
 | 
				
			||||||
			for (;rc != SUCCESS;) {
 | 
								for (;rc != SUCCESS;) {
 | 
				
			||||||
				if (!(p1 = select_proxy(FIFOLY, pd, proxy_count, &offset))) {
 | 
									if (!(p1 = select_proxy(FIFOLY, pd, proxy_count, &offset))) {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user