git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@830368
13f79535-47bb-0310-9956-
ffa450edef68
/**
+ * Set the IP address of the remote client associated with this Request.
+ *
+ * @param remoteAddr The remote IP address
+ */
+ public void setRemoteAddr(String remoteAddr) {
+ this.remoteAddr = remoteAddr;
+ }
+
+
+ /**
+ * Set the fully qualified name of the remote client associated with this
+ * Request.
+ *
+ * @param remoteHost The remote host name
+ */
+ public void setRemoteHost(String remoteHost) {
+ this.remoteHost = remoteHost;
+ }
+
+
+ /**
* Set the value to be returned by <code>isSecure()</code>
* for this Request.
*