TeAmEr
TeAmEr

Reputation: 4773

UDP hole punching on 1 port?

I want to use UDP to send PUSH notifications for users of our system , but i wonder if it will work ?

Assuming i have one server which have port let's say UDP:8888 open and waiting for connections . My questions are :

Thanks :)

Upvotes: 0

Views: 199

Answers (1)

Vikram Ranabhatt
Vikram Ranabhatt

Reputation: 7620

  1. When you say Server at Port UDP:8888 it will be able to receive connection from multiple client

  2. Use SO_REUSEADDR to resuse same UDP port. Reusing a port number in a UDP

Upvotes: 1

Related Questions