Home
last modified time | relevance | path

Searched refs:connectionPreface (Results 1 – 4 of 4) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DHttp2.java104 ByteString connectionPreface = source.readByteString(CONNECTION_PREFACE.size()); in readConnectionPreface()
105 if (logger.isLoggable(FINE)) logger.fine(format("<< CONNECTION %s", connectionPreface.hex())); in readConnectionPreface()
106 if (!CONNECTION_PREFACE.equals(connectionPreface)) { in readConnectionPreface()
107 throw ioException("Expected a connection header but was %s", connectionPreface.utf8()); in readConnectionPreface()
395 @Override public synchronized void connectionPreface() throws IOException { in connectionPreface() method in Http2.Writer
DFrameWriter.java27 void connectionPreface() throws IOException; in connectionPreface() method
DSpdy3.java314 @Override public synchronized void connectionPreface() { in connectionPreface() method in Spdy3.Writer
DFramedConnection.java514 frameWriter.connectionPreface(); in sendConnectionPreface()