Example #1
0
        public List<PeerInfo> ResolveByPeerHostName(string peerHostName)
        {
            try
            {
                if (string.IsNullOrEmpty(peerHostName))
                    throw new ArgumentException("Cannot have a null or empty host peer name.");

                PeerNameResolver resolver = new PeerNameResolver();
                List<PeerInfo> foundPeers = new List<PeerInfo>();
                var resolvedName = resolver.Resolve(new PeerName(peerHostName, PeerNameType.Unsecured), Cloud.AllLinkLocal);                
                foreach (var foundItem in resolvedName)
                {
                    foreach (var endPointInfo in foundItem.EndPointCollection)
                    {
                        PeerInfo peerInfo = new PeerInfo(foundItem.PeerName.PeerHostName, foundItem.PeerName.Classifier,endPointInfo.Port);
                        peerInfo.Comment = foundItem.Comment;
                        foundPeers.Add(peerInfo);
                    }

                }
                return foundPeers;
               
            }
            catch (PeerToPeerException px)
            {
                throw new Exception(px.InnerException.Message);
            }

        }        
Example #2
0
        public List <PeerInfo> ResolveByPeerHostName(string peerHostName)
        {
            try
            {
                if (string.IsNullOrEmpty(peerHostName))
                {
                    throw new ArgumentException("Cannot have a null or empty host peer name.");
                }

                PeerNameResolver resolver   = new PeerNameResolver();
                List <PeerInfo>  foundPeers = new List <PeerInfo>();
                var resolvedName            = resolver.Resolve(new PeerName(peerHostName, PeerNameType.Unsecured), Cloud.AllLinkLocal);
                foreach (var foundItem in resolvedName)
                {
                    foreach (var endPointInfo in foundItem.EndPointCollection)
                    {
                        PeerInfo peerInfo = new PeerInfo(foundItem.PeerName.PeerHostName, foundItem.PeerName.Classifier, endPointInfo.Port);
                        peerInfo.Comment = foundItem.Comment;
                        foundPeers.Add(peerInfo);
                    }
                }
                return(foundPeers);
            }
            catch (PeerToPeerException px)
            {
                throw new Exception(px.InnerException.Message);
            }
        }
Example #3
0
 public List<PeerInfo>  Register()
 {
     List<PeerInfo>  registerdPeer = new List<PeerInfo>();
     foreach (var registration in registrations)
     {
         string timeStamp = string.Format("FreeFile Peer Crearted at : {0}", DateTime.Now.ToShortTimeString());
         registration.Comment = timeStamp;
         try
         {
             try
             {
                 registration.Start();
                 if (registerdPeer.FirstOrDefault(x => x.HostName == registration.PeerName.PeerHostName) == null)
                 {
                     PeerInfo peerInfo = new PeerInfo(registration.PeerName.PeerHostName, registration.PeerName.Classifier, registration.Port);
                     peerInfo.Comment = registration.Comment;
                     registerdPeer.Add(peerInfo);
                 }
             }
             catch { }
         }
         catch (PeerToPeerException PEX)
         {
             throw new Exception(PEX.InnerException.Message);
         }
     }
     this.CurrentPOeerRegistrationInfo = registerdPeer;                    
     return registerdPeer;
 }      
Example #4
0
        public List <PeerInfo> Register()
        {
            List <PeerInfo> registerdPeer = new List <PeerInfo>();

            foreach (var registration in registrations)
            {
                string timeStamp = string.Format("FreeFile Peer Crearted at : {0}", DateTime.Now.ToShortTimeString());
                registration.Comment = timeStamp;
                try
                {
                    try
                    {
                        registration.Start();
                        if (registerdPeer.FirstOrDefault(x => x.HostName == registration.PeerName.PeerHostName) == null)
                        {
                            PeerInfo peerInfo = new PeerInfo(registration.PeerName.PeerHostName, registration.PeerName.Classifier, registration.Port);
                            peerInfo.Comment = registration.Comment;
                            registerdPeer.Add(peerInfo);
                        }
                    }
                    catch { }
                }
                catch (PeerToPeerException PEX)
                {
                    throw new Exception(PEX.InnerException.Message);
                }
            }
            this.CurrentPOeerRegistrationInfo = registerdPeer;
            return(registerdPeer);
        }