Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6182917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T01:16:44+00:00 2026-05-24T01:16:44+00:00

Im currently doing research towards my final year BSc project. The final product will

  • 0

Im currently doing research towards my final year BSc project. The final product will include indoor location tracking functionality. The traditional, or most utilised method seems to be RSSI triangulation, but I am keen to attempt to improve the accuracy of the PING method as I think this would be better suited to locations that may suffer from signal attenuation (the locations I am intending to use the device may have a moderate ammount of radio interference).

I was wondering if it was possible to write software in c# that would mimick the ping flood ability of linux ping utility(which enable the sending of multiple pings without waiting for a reply). I hypothesize that using multiple pings and timing them from the first to the last will enable the usage of the method over shorter distances.

Many Thanks

Dylan

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T01:16:45+00:00Added an answer on May 24, 2026 at 1:16 am

    try this hope it works fine

    private ArrayList IPList()
            {
                string myipsplit = string.Empty;
                string myip =
                    Dns.GetHostAddresses(
                        Dns.GetHostName())[0].ToString();
                string[] myiparray = myip.Split(new[] {'.'});
                for (int j = 1; j < myiparray.Length; j++)
                    myipsplit += myiparray[j - 1] + ".";
                var sb = new ArrayList();
                MyPing ping = delegate(int id)
                                  {
                                      string ls = myipsplit + id;
                                      var pingSender = new System.Net.NetworkInformation.Ping();
                                      PingReply reply = pingSender.Send(ls, 0);
                                      if (reply != null)
                                          if (reply.Status == IPStatus.Success)
                                              sb.Add(ls);
                                  };
                var asyncResults = new IAsyncResult[0x100];
                for (int i = 1; i < 0x100; i++)
                    asyncResults[i] = ping.BeginInvoke(i, null, null);
                for (int i = 1; i < 0x100; i++)
                    ping.EndInvoke(asyncResults[i]);
                return sb;
            }
    
            #region Nested type: MyPing
    
            private delegate void MyPing(int id);
    
            #endregion
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As I am currently doing this project in only C, I've up untill this
I'm currently doing some research on smali/code obfuscator and I'm trying to get familar
Currently I'm doing research for a custom build deployment application on a unix system.
I am currently doing a project on GWT and in the background study, I
I am doing some research on language implementations on multicore platforms. Currently, I am
I'm working on an Event based architecture for a research project. The system currently
I'm currently doing some optimization work on a large web project. I'm already doing
I'm currently doing some GUI testing on a ASP.net 2.0 application. The RDBMS is
I'm currently doing the following to use typed datasets in vs2008: Right click on
i'm currently doing some reports for SSRS, and i just confirm what i already

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.