Home | History | Annotate | Download | only in lib

Lines Matching defs:pe

29 	struct protoent *pe;
34 pe = getprotobynumber(proto);
35 if (pe) {
37 strncpy(ncache, pe->p_name, 16);
38 strncpy(buf, pe->p_name, len);
49 struct protoent *pe;
61 pe = getprotobyname(buf);
62 if (pe) {
63 icache = pe->p_proto;
64 strncpy(ncache, pe->p_name, 16);
65 return pe->p_proto;