Home | History | Annotate | Download | only in stack

Lines Matching defs:ipAddress

78     private InetAddress ipAddress;
109 * @param ipAddress -- ip address where I am listening for incoming requests.
113 protected MessageProcessor( InetAddress ipAddress, int port, String transport,
116 this.initialize(ipAddress, port, transactionStack);
127 public final void initialize( InetAddress ipAddress, int port,
131 this.savedIpAddress = ipAddress.getHostAddress();
132 this.ipAddress = ipAddress;
135 this.sentByHostPort.setHost(new Host(ipAddress.getHostAddress()));
220 return this.ipAddress;
223 * @param ipAddress the ipAddress to set
225 protected void setIpAddress(InetAddress ipAddress) {
226 this.sentByHostPort.setHost( new Host(ipAddress.getHostAddress()));
227 this.ipAddress = ipAddress;