Home
last modified time | relevance | path

Searched refs:LINESIZ (Results 1 – 2 of 2) sorted by relevance

/freebsd/usr.sbin/inetd/
H A Dbuiltins.c121 * characters chosen from the range 0 to 512. We send LINESIZ+2.
131 char text[LINESIZ+2]; in chargen_dg()
146 if ((len = endring - rs) >= LINESIZ) in chargen_dg()
147 memmove(text, rs, LINESIZ); in chargen_dg()
150 memmove(text + len, ring, LINESIZ - len); in chargen_dg()
154 text[LINESIZ] = '\r'; in chargen_dg()
155 text[LINESIZ + 1] = '\n'; in chargen_dg()
165 char *rs, text[LINESIZ+2]; in chargen_stream()
172 text[LINESIZ] = '\r'; in chargen_stream()
173 text[LINESIZ in chargen_stream()
[all...]
H A Dinetd.h42 #define LINESIZ 72 macro