Searched refs:remoteHost (Results 1 - 6 of 6) sorted by relevance
| /glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/common/ |
| H A D | HandlerRequest.java | 442 msg.getBytes(req.remoteHost());
|
| /glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/core/ |
| H A D | MsgContext.java | 408 // If remoteHost not set by JK, get it's name from it's remoteAddr 409 if( req.remoteHost().isNull()) { 411 req.remoteHost().setString(InetAddress.getByName(
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/ |
| H A D | Request.java | 347 protected String remoteHost = null; field in class:Request 543 remoteHost = null; 833 remoteHost = null; 1003 * @param remoteHost The remote host name 1005 public void setRemoteHost(String remoteHost) { argument 1396 if (remoteHost == null) { 1398 remoteHost = getRemoteAddr(); 1405 remoteHost = InetAddress.getByName(addr).getHostName(); 1419 remoteHost = inet.getHostName(); 1422 remoteHost [all...] |
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
| H A D | DummyRequest.java | 209 public void setRemoteHost(String remoteHost) {} argument
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/ |
| H A D | JDBCAccessLogValve.java | 115 * remoteHost CHAR(15) NOT NULL, 127 * INDEX (remoteHost), 139 * <code>remoteHost, user, timeStamp, query, status, bytes</code> 169 * remoteHostField = "remoteHost"; 188 remoteHostField = "remoteHost"; 446 String remoteHost = ""; 448 remoteHost = req.getRemoteHost(); 450 remoteHost = req.getRemoteAddr(); 464 ps.setString(1, remoteHost);
|
| /glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/ |
| H A D | ResourceUtil.java | 1036 * Authenticate the given req as originated from given remoteHost against admin realm. 1039 public static AdminAccessController.Access authenticateViaAdminRealm(Habitat habitat, GrizzlyRequest req, String remoteHost) throws IOException, LoginException { argument 1054 access = authenticator.loginAsAdmin(user, password, as.getAuthRealmName(), remoteHost, getAuthRelatedHeaders(req), sslPrincipal);
|
Completed in 1028 milliseconds