| 603 | } |
| 604 | |
| 605 | static int |
| 606 | lookup_media_word(struct ifmedia_description *desc, const char *val) |
| 607 | { |
| 608 | |
| 609 | for (; desc->ifmt_string != NULL; desc++) |
| 610 | if (strcasecmp(desc->ifmt_string, val) == 0) |
| 611 | return (desc->ifmt_word); |
| 612 | |
| 613 | return (-1); |
| 614 | } |
| 615 | |
| 616 | static struct ifmedia_description *get_toptype_desc(int ifmw) |
| 617 | { |
no test coverage detected