Return the peer IP address of the connection making this request. @return the peer IP address
()
| 1239 | * @return the peer IP address |
| 1240 | */ |
| 1241 | public String getPeerAddr() { |
| 1242 | if (peerAddr == null) { |
| 1243 | coyoteRequest.action(ActionCode.REQ_PEER_ADDR_ATTRIBUTE, coyoteRequest); |
| 1244 | peerAddr = coyoteRequest.peerAddr().toString(); |
| 1245 | } |
| 1246 | return peerAddr; |
| 1247 | } |
| 1248 | |
| 1249 | |
| 1250 | @Override |