| 515 | } |
| 516 | |
| 517 | const char *iptoa(const enet_uint32 ip, char *b) |
| 518 | { |
| 519 | formatstring(b)("%d.%d.%d.%d", (ip >> 24) & 255, (ip >> 16) & 255, (ip >> 8) & 255, ip & 255); |
| 520 | return b; |
| 521 | } |
| 522 | |
| 523 | const char *iprtoa(const struct iprange &ipr, char *b) |
| 524 | { |
no outgoing calls
no test coverage detected