SmoZy has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: Problem Scan UDP Port
by Corion (Patriarch) on Jun 17, 2014 at 07:03 UTC

    I've followed your wild goose chase of pastebin links, and my suggestion to you is to first clean up your code and separate all the things your code attempts.

    Your code tries to do forking, and tries to do asynchronous socket handling, and tries to do an UDP socket scan.

    Start simple and write a program that only does synchronous UDP socket handling for a single port and make that work.

    Then, decide on whether to use fork() or asynchronous socket handling.

    Then, implement one of the choices but don't mix them.

    Also, you may want to investigate AnyEvent for asynchronous socket handling.

Re: Problem Scan UDP Port
by hexcoder (Curate) on Jun 16, 2014 at 22:44 UTC
    Please don't expect anybody to
    1. guess your question
    2. chase your code following multiple links.

    You need to put it here with a proper formulated question.
    Please read How do I post a question effectively?