org.apache.coyote.Request.remoteHost()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(6.8k)|赞(0)|评价(0)|浏览(335)

本文整理了Java中org.apache.coyote.Request.remoteHost方法的一些代码示例,展示了Request.remoteHost的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.remoteHost方法的具体详情如下:
包路径:org.apache.coyote.Request
类名称:Request
方法名:remoteHost

Request.remoteHost介绍

暂无

代码示例

代码示例来源:origin: line/armeria

  1. coyoteReq.remoteHost().setString(remoteAddr.getHostString());
  2. coyoteReq.setRemotePort(remoteAddr.getPort());

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. @Override
  2. protected final void populateRequestAttributeRemoteHost() {
  3. // Get remote host name using a DNS resolution
  4. if (request.remoteHost().isNull()) {
  5. try {
  6. request.remoteHost().setString(InetAddress.getByName
  7. (request.remoteAddr().toString()).getHostName());
  8. } catch (IOException iex) {
  9. // Ignore
  10. }
  11. }
  12. }

代码示例来源:origin: org.jboss.web/jbossweb

  1. /**
  2. * Get remote host name
  3. */
  4. private void requestHostAttribute() {
  5. if (remoteHost == null && (channel != null)) {
  6. try {
  7. remoteHost = ((InetSocketAddress) this.channel.getRemoteAddress()).getHostName();
  8. if (remoteHost == null) {
  9. remoteAddr = ((InetSocketAddress) this.channel.getRemoteAddress()).getAddress()
  10. .getHostAddress();
  11. remoteHost = remoteAddr;
  12. }
  13. } catch (Exception e) {
  14. CoyoteLogger.HTTP_LOGGER.errorGettingSocketInformation(e);
  15. }
  16. }
  17. request.remoteHost().setString(remoteHost);
  18. }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. /**
  2. * Populate the remote host request attribute. Processors (e.g. AJP) that
  3. * populate this from an alternative source should override this method.
  4. */
  5. protected void populateRequestAttributeRemoteHost() {
  6. if (getPopulateRequestAttributesFromSocket() && socketWrapper != null) {
  7. request.remoteHost().setString(socketWrapper.getRemoteHost());
  8. }
  9. }

代码示例来源:origin: org.osivia.portal.core/osivia-portal-jbossas-jbossweb-lib

  1. /* */ public String getRemoteHost()
  2. /* */ {
  3. /* 1181 */ if (this.remoteHost == null) {
  4. /* 1182 */ if (!this.connector.getEnableLookups()) {
  5. /* 1183 */ this.remoteHost = getRemoteAddr();
  6. /* */ } else {
  7. /* 1185 */ this.coyoteRequest.action(ActionCode.ACTION_REQ_HOST_ATTRIBUTE, this.coyoteRequest);
  8. /* */
  9. /* 1187 */ this.remoteHost = this.coyoteRequest.remoteHost().toString();
  10. /* */ }
  11. /* */ }
  12. /* 1190 */ return this.remoteHost;
  13. /* */ }
  14. /* */

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. @Override
  5. public String getRemoteHost() {
  6. if (remoteHost == null) {
  7. if (!connector.getEnableLookups()) {
  8. remoteHost = getRemoteAddr();
  9. } else {
  10. coyoteRequest.action
  11. (ActionCode.REQ_HOST_ATTRIBUTE, coyoteRequest);
  12. remoteHost = coyoteRequest.remoteHost().toString();
  13. }
  14. }
  15. return remoteHost;
  16. }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. /**
  2. * @return the remote host name making this Request.
  3. */
  4. @Override
  5. public String getRemoteHost() {
  6. if (remoteHost == null) {
  7. if (!connector.getEnableLookups()) {
  8. remoteHost = getRemoteAddr();
  9. } else {
  10. coyoteRequest.action
  11. (ActionCode.REQ_HOST_ATTRIBUTE, coyoteRequest);
  12. remoteHost = coyoteRequest.remoteHost().toString();
  13. }
  14. }
  15. return remoteHost;
  16. }

代码示例来源:origin: org.jboss.web/jbossweb

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. public String getRemoteHost() {
  5. if (remoteHost == null) {
  6. if (!connector.getEnableLookups()) {
  7. remoteHost = getRemoteAddr();
  8. } else {
  9. coyoteRequest.action
  10. (ActionCode.ACTION_REQ_HOST_ATTRIBUTE, coyoteRequest);
  11. remoteHost = coyoteRequest.remoteHost().toString();
  12. }
  13. }
  14. return remoteHost;
  15. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. /**
  2. * @return the remote host name making this Request.
  3. */
  4. @Override
  5. public String getRemoteHost() {
  6. if (remoteHost == null) {
  7. if (!connector.getEnableLookups()) {
  8. remoteHost = getRemoteAddr();
  9. } else {
  10. coyoteRequest.action
  11. (ActionCode.REQ_HOST_ATTRIBUTE, coyoteRequest);
  12. remoteHost = coyoteRequest.remoteHost().toString();
  13. }
  14. }
  15. return remoteHost;
  16. }

代码示例来源:origin: jboss.web/jbossweb

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. public String getRemoteHost() {
  5. if (remoteHost == null) {
  6. if (!connector.getEnableLookups()) {
  7. remoteHost = getRemoteAddr();
  8. } else {
  9. coyoteRequest.action
  10. (ActionCode.ACTION_REQ_HOST_ATTRIBUTE, coyoteRequest);
  11. remoteHost = coyoteRequest.remoteHost().toString();
  12. }
  13. }
  14. return remoteHost;
  15. }

代码示例来源:origin: tomcat/catalina

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. public String getRemoteHost() {
  5. if (remoteHost == null) {
  6. if (!connector.getEnableLookups()) {
  7. remoteHost = getRemoteAddr();
  8. } else {
  9. coyoteRequest.action
  10. (ActionCode.ACTION_REQ_HOST_ATTRIBUTE, coyoteRequest);
  11. remoteHost = coyoteRequest.remoteHost().toString();
  12. }
  13. }
  14. return remoteHost;
  15. }

代码示例来源:origin: codefollower/Tomcat-Research

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. @Override
  5. public String getRemoteHost() {
  6. if (remoteHost == null) {
  7. if (!connector.getEnableLookups()) {
  8. remoteHost = getRemoteAddr();
  9. } else {
  10. coyoteRequest.action
  11. (ActionCode.REQ_HOST_ATTRIBUTE, coyoteRequest);
  12. remoteHost = coyoteRequest.remoteHost().toString();
  13. }
  14. }
  15. return remoteHost;
  16. }

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. @Override
  5. public String getRemoteHost() {
  6. if (remoteHost == null) {
  7. if (!connector.getEnableLookups()) {
  8. remoteHost = getRemoteAddr();
  9. } else {
  10. coyoteRequest.action
  11. (ActionCode.REQ_HOST_ATTRIBUTE, coyoteRequest);
  12. remoteHost = coyoteRequest.remoteHost().toString();
  13. }
  14. }
  15. return remoteHost;
  16. }

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. @Override
  5. public String getRemoteHost() {
  6. if (remoteHost == null) {
  7. if (!connector.getEnableLookups()) {
  8. remoteHost = getRemoteAddr();
  9. } else {
  10. coyoteRequest.action
  11. (ActionCode.REQ_HOST_ATTRIBUTE, coyoteRequest);
  12. remoteHost = coyoteRequest.remoteHost().toString();
  13. }
  14. }
  15. return remoteHost;
  16. }

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. @Override
  5. public String getRemoteHost() {
  6. if (remoteHost == null) {
  7. if (!connector.getEnableLookups()) {
  8. remoteHost = getRemoteAddr();
  9. } else {
  10. coyoteRequest.action
  11. (ActionCode.REQ_HOST_ATTRIBUTE, coyoteRequest);
  12. remoteHost = coyoteRequest.remoteHost().toString();
  13. }
  14. }
  15. return remoteHost;
  16. }

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

  1. /**
  2. * Return the remote host name making this Request.
  3. */
  4. @Override
  5. public String getRemoteHost() {
  6. if (remoteHost == null) {
  7. if (!connector.getEnableLookups()) {
  8. remoteHost = getRemoteAddr();
  9. } else {
  10. coyoteRequest.action
  11. (ActionCode.REQ_HOST_ATTRIBUTE, coyoteRequest);
  12. remoteHost = coyoteRequest.remoteHost().toString();
  13. }
  14. }
  15. return remoteHost;
  16. }

代码示例来源:origin: jboss.web/jbossweb

  1. if (request.remoteHost().isNull()) {
  2. try {
  3. request.remoteHost().setString(InetAddress.getByName
  4. (request.remoteAddr().toString()).getHostName());
  5. } catch (IOException iex) {

代码示例来源:origin: org.apache.coyote.springsource/com.springsource.org.apache.coyote.springsource

  1. if (request.remoteHost().isNull()) {
  2. try {
  3. request.remoteHost().setString(InetAddress.getByName
  4. (request.remoteAddr().toString()).getHostName());
  5. } catch (IOException iex) {

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

  1. remoteHost = remoteAddr;
  2. } else { // all we can do is punt
  3. request.remoteHost().recycle();
  4. request.remoteHost().setString(remoteHost);

代码示例来源:origin: org.apache.coyote.springsource/com.springsource.org.apache.coyote.springsource

  1. msg.getBytes(req.remoteHost());
  2. msg.getBytes(req.localName());
  3. req.setLocalPort(msg.getInt());

相关文章

Request类方法