mirror of
				https://github.com/esiur/esiur-dotnet.git
				synced 2025-10-30 23:51:34 +00:00 
			
		
		
		
	Rename
This commit is contained in:
		
							
								
								
									
										39
									
								
								Esiur/Net/HTTP/IIPoHTTP.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								Esiur/Net/HTTP/IIPoHTTP.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,39 @@ | ||||
| using Esiur.Core; | ||||
| using Esiur.Net.IIP; | ||||
| using Esiur.Net.Packets; | ||||
| using Esiur.Resource; | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Text; | ||||
|  | ||||
| namespace Esiur.Net.HTTP | ||||
| { | ||||
|     public class IIPoHTTP : HTTPFilter | ||||
|     { | ||||
|         [Attribute] | ||||
|         EntryPoint EntryPoint { get; set; } | ||||
|  | ||||
|         public override AsyncReply<bool> Execute(HTTPConnection sender) | ||||
|         { | ||||
|             if (sender.Request.URL != "iip") | ||||
|                 return new AsyncReply<bool>(false); | ||||
|  | ||||
|             IIPPacket.IIPPacketAction action = (IIPPacket.IIPPacketAction)Convert.ToByte(sender.Request.Query["a"]); | ||||
|  | ||||
|             if (action == IIPPacket.IIPPacketAction.QueryLink) | ||||
|             { | ||||
|                 EntryPoint.Query(sender.Request.Query["l"], null).Then(x => | ||||
|                 { | ||||
|  | ||||
|                 }); | ||||
|             } | ||||
|  | ||||
|             return new AsyncReply<bool>(true); | ||||
|         } | ||||
|  | ||||
|         public override AsyncReply<bool> Trigger(ResourceTrigger trigger) | ||||
|         { | ||||
|             return new AsyncReply<bool>(true); | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user