| 5288 | |
| 5289 | #ifdef INET |
| 5290 | static const char * |
| 5291 | sppp_ipcp_opt_name(u_char opt) |
| 5292 | { |
| 5293 | static char buf[12]; |
| 5294 | switch (opt) { |
| 5295 | case IPCP_OPT_ADDRESSES: return "addresses"; |
| 5296 | case IPCP_OPT_COMPRESSION: return "compression"; |
| 5297 | case IPCP_OPT_ADDRESS: return "address"; |
| 5298 | } |
| 5299 | snprintf (buf, sizeof(buf), "ipcp/0x%x", opt); |
| 5300 | return buf; |
| 5301 | } |
| 5302 | #endif |
| 5303 | |
| 5304 | #ifdef INET6 |
no test coverage detected