{@inheritDoc} This implementation populates the server name from the local name provided by the AJP message.
()
| 883 | * This implementation populates the server name from the local name provided by the AJP message. |
| 884 | */ |
| 885 | @Override |
| 886 | protected void populateHost() { |
| 887 | try { |
| 888 | request.serverName().duplicate(request.localName()); |
| 889 | } catch (IOException ioe) { |
| 890 | response.setStatus(400); |
| 891 | setErrorState(ErrorState.CLOSE_CLEAN, ioe); |
| 892 | } |
| 893 | } |
| 894 | |
| 895 | |
| 896 | /** |
nothing calls this directly
no test coverage detected