A simple ping implementation.
- 🔍 DNS resolution – Works with both IP addresses and domain names
- 📊 ICMP Echo Request/Reply – Implements the core ping protocol
- 🎯 Multiple options – Customizable timeout and verbosity
- 🛡️ Raw socket implementation – Low-level network communication
./ft_ping [options] <destination>
| Option | Description |
|---|---|
| -v | Verbose output |
| -w | Stop after N seconds |
| -W | Number of seconds to wait for response |
| -h, ? | Show this help |
To compile the project, run:
make