Home | History | Annotate | Download | only in inet

Lines Matching refs:dst

34 static const char *inet_ntop4(const u_char *src, char *dst, size_t size);
35 static const char *inet_ntop6(const u_char *src, char *dst, size_t size);
38 * inet_ntop(af, src, dst, size)
41 * pointer to presentation format address (`dst'), or NULL (see errno).
46 inet_ntop(int af, const void *src, char *dst, size_t size)
50 return (inet_ntop4(src, dst, size));
52 return (inet_ntop6(src, dst, size));
61 * inet_ntop4(src, dst, size)
64 * `dst' (as a const)
72 inet_ntop4(const u_char *src, char *dst, size_t size)
83 strlcpy(dst, tmp, size);
84 return (dst);
88 * inet_ntop6(src, dst, size)
94 inet_ntop6(const u_char *src, char *dst, size_t size)
195 strlcpy(dst, tmp, size);
196 return (dst);