mirror of
				https://github.com/PurpleI2P/i2pd.git
				synced 2025-11-04 08:30:46 +00:00 
			
		
		
		
	handle master session creation
This commit is contained in:
		
							parent
							
								
									b5618af308
								
							
						
					
					
						commit
						b43a9cc80d
					
				
					 2 changed files with 5 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -352,6 +352,7 @@ namespace client
 | 
			
		|||
		if (style == SAM_VALUE_STREAM) type = eSAMSessionTypeStream;
 | 
			
		||||
		else if (style == SAM_VALUE_DATAGRAM) type = eSAMSessionTypeDatagram;
 | 
			
		||||
		else if (style == SAM_VALUE_RAW) type = eSAMSessionTypeRaw;
 | 
			
		||||
		else if (style == SAM_VALUE_MASTER) type = eSAMSessionTypeMaster;
 | 
			
		||||
		if (type == eSAMSessionTypeUnknown)
 | 
			
		||||
		{
 | 
			
		||||
			// unknown style
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -76,6 +76,7 @@ namespace client
 | 
			
		|||
	const char SAM_VALUE_STREAM[] = "STREAM";
 | 
			
		||||
	const char SAM_VALUE_DATAGRAM[] = "DATAGRAM";
 | 
			
		||||
	const char SAM_VALUE_RAW[] = "RAW";
 | 
			
		||||
	const char SAM_VALUE_MASTER[] = "MASTER";	
 | 
			
		||||
	const char SAM_VALUE_TRUE[] = "true";
 | 
			
		||||
	const char SAM_VALUE_FALSE[] = "false";
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -171,7 +172,8 @@ namespace client
 | 
			
		|||
		eSAMSessionTypeUnknown,
 | 
			
		||||
		eSAMSessionTypeStream,
 | 
			
		||||
		eSAMSessionTypeDatagram,
 | 
			
		||||
		eSAMSessionTypeRaw
 | 
			
		||||
		eSAMSessionTypeRaw,
 | 
			
		||||
		eSAMSessionTypeMaster
 | 
			
		||||
	};
 | 
			
		||||
 | 
			
		||||
	struct SAMSession
 | 
			
		||||
| 
						 | 
				
			
			@ -187,7 +189,7 @@ namespace client
 | 
			
		|||
 | 
			
		||||
		void CloseStreams ();
 | 
			
		||||
	};
 | 
			
		||||
 | 
			
		||||
	
 | 
			
		||||
	class SAMBridge: private i2p::util::RunnableService
 | 
			
		||||
	{
 | 
			
		||||
		public:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue