Category ‘Socket Programming’
- TECHPULP |
Why my application can’t open more than 1024 or 4096 sockets in Linux
Typically socket “open” call doesn’t fail unless you have missed out closing the previous connections using “close” system call. Typically Linux/Unix sets a maximum limit for the number of open FDs. That means you can’t keep FDs in open state...