| 107 | } |
| 108 | |
| 109 | static int |
| 110 | protohandler(struct libalias *la, struct ip *pip, struct alias_data *ah) |
| 111 | { |
| 112 | |
| 113 | newpacket = malloc(PKTSIZE); |
| 114 | if (newpacket) { |
| 115 | AliasHandleIrcOut(la, pip, ah->lnk, ah->maxpktsize); |
| 116 | free(newpacket); |
| 117 | } |
| 118 | return (0); |
| 119 | } |
| 120 | |
| 121 | struct proto_handler handlers[] = { |
| 122 | { |
nothing calls this directly
no test coverage detected