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 6135317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:27:52+00:00 2026-05-23T17:27:52+00:00

{ok,Socket} = gen_udp:open(9000, [binary,{active,false}, {reuseaddr,true}]), Pid0 = spawn_link( fun() -> loop_passive( Socket ) end

  • 0
{ok,Socket} = gen_udp:open(9000, [binary,{active,false}, {reuseaddr,true}]),

Pid0 = spawn_link( fun() -> loop_passive( Socket ) end ),

Pid1 = spawn_link( fun() -> loop_passive( Socket ) end ) --> error
.. (many overlapped receiving per a binded socket)
N

loop_passive(Socket) ->
   case gen_udp:recv(Socket, 0) of
     {ok, {Addr,Port,Packet}} ->
        process(Socket,Addr,Port,Packet),
        loop_passive(Socket);
     Error ->
          io:format("udp_passive error: ~p~n", [Error])
    end.

I’ll make scalabe UDP server.
Erlang UDP mechanism was simple once at a time.
Ever, there is not another way?

  • 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-23T17:27:53+00:00Added an answer on May 23, 2026 at 5:27 pm

    Let us look at that code where it is readable:

     {ok,Socket} = gen_udp:open(9000, [binary,{active,false}, {reuseaddr,true}]),
     Pid0 = spawn_link( fun() ->
               loop_passive( Socket ) end ),
     Pid1 = spawn_link( fun() ->
               loop_passive( Socket ) end ).
    

    This means that self() opens the UDP socket, and Pid0 and Pid1 gets passed the resulting socket. Note that self() (the process running the above code) is the controlling process of the socket.

     loop_passive(Socket) ->
       case gen_udp:recv(Socket, 0) of
          {ok, {Addr,Port,Packet}} ->
               process(Socket,Addr,Port,Packet),
               loop_passive(Socket);
          Error -> io:format("udp_passive error: ~p~n", [Error])
       end.
    

    This is just a simple loop on incoming packets. It means that Pid0 and Pid1 are the ones that are reading off data from the socket, whenever goes first.

    The usual problems in this case are:

    • The controlling process dies and thus the socket is closed
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I established a connection with a client this way: gen_tcp:listen(1234,[binary,{packet,0},{reuseaddr,true},{active,false},{recbuf,2048}]). This code performs message
One of gen_servers in my app call gen_tcp:listen(Port, [{active, true}]) . First time I
Socket has a constructor that takes a winsock SOCKET as parameter and stores it
When I call socket.getsockname() on a socket object, it returns a tuple of my
When I create a socket using accept() and make a FILE out of it
Using C / C++ socket programming, and the read(socket, buffer, BUFSIZE) method. What exactly
In any socket API the close() method closes a connection with a FIN. If
There is a socket related function call in my code, that function is from
When using socket in the UNIX domain, it is advisable to use path name
When creating a Socket in Java: new Socket(host, port); The Socket constructor will try

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.