httpStatus method

int httpStatus()

Implementation

int httpStatus() {
  int status;
  if (rootStatus == RootStatus.found) {
    status = _serverHttpStatus();
  } else {
    status = _rootHttpStatus();
  }
  return status;
}