/**
  * Sends a connection header if the current variant requires it. This should be called after
  * {@link Builder#build} for all new connections.
  */
 public void sendConnectionHeader() throws IOException {
   frameWriter.connectionHeader();
   frameWriter.settings(okHttpSettings);
 }