i am developing a torrent with Java and there is a small question i have. How can i get an open socket for my process in java? i need about 100 free sockets in a sequence, just like 10000-10100. All i know is that by using
socket = new Socket(ip, port);
we need to provide ip and port. Well of course this is the case of debug and my ip is loopback, but i could find only one free port by using random numbers in port field. Please tell me how to find a sequence of free ports for tcp.
