Searched refs:CRLF (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6433018.java39 static String CRLF = "\r\n"; field in class:B6433018
41 /* invalid HTTP POST with extra CRLF at end */
46 "POST /test/item HTTP/1.1"+CRLF+
47 "Keep-Alive: 300"+CRLF+
48 "Proxy-Connection: keep-alive"+CRLF+
49 "Content-Type: text/xml"+CRLF+
50 "Content-Length: 22"+CRLF+
51 "Pragma: no-cache"+CRLF+
52 "Cache-Control: no-cache"+CRLF+ CRLF
[all...]
H A DB6393710.java48 static String CRLF = "\r\n"; field in class:B6393710
54 "POST /test/foo HTTP/1.1"+CRLF+
55 "Content-Length: 22"+CRLF+
56 "Pragma: no-cache"+CRLF+
57 "Cache-Control: no-cache"+CRLF+ CRLF+
59 "POST /test/foo HTTP/1.1"+CRLF+
60 "Content-Length: 22"+CRLF+
61 "Pragma: no-cache"+CRLF+
62 "Authorization: Basic ZnJlZDpmcmVkcGFzc3dvcmQ="+CRLF
[all...]
/openjdk7/langtools/test/tools/javac/
H A DAddReferenceThis.java39 final char[] CRLF = { CR, LF}; field in class:AddReferenceThis
/openjdk7/jdk/src/share/sample/nio/server/
H A DReply.java84 private static String CRLF = "\r\n"; field in class:Reply
93 cb.put("HTTP/1.0 ").put(code.toString()).put(CRLF);
94 cb.put("Server: niossl/0.1").put(CRLF);
95 cb.put("Content-type: ").put(content.type()).put(CRLF);
97 .put(Long.toString(content.length())).put(CRLF);
98 cb.put(CRLF);
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DChunkedOutputStream.java37 private static final byte[] CRLF = {'\r', '\n'}; field in class:ChunkedOutputStream
38 private static final int CRLF_SIZE = CRLF.length;
39 private static final byte[] FOOTER = CRLF;
77 header[hexBytes.length] = CRLF[0];
78 header[hexBytes.length+1] = CRLF[1];
101 * 3 bytes for chunk size in hex and CRLF (header) and CRLF (footer)).
190 * chunks of a following format: {Data length in Hex}{CRLF}{data}{CRLF}
196 * chunk of a following format: {space for data length}{CRLF}{dat
[all...]

Completed in 438 milliseconds