说明
返回客户端的 IP 地址。
用法
client.remoteIP()
参数
空
返回
- 客户端的 IP 地址 (IPAddress)。
示例
#include <Ethernet.h>
#include <SPI.h>
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
IPAddress ip(10, 0, 0, 177);
// telnet defaults to port 23
EthernetServer server = EthernetServer(23);
void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
// initialize the Ethernet device
Ethernet.begin(mac, ip);
// start listening for clients
server.begin();
}
void loop() {
// if an incoming client connects, there will be bytes available to read:
EthernetClient client = server.available();
if (client) {
Serial.print("Remote IP address: ");
Serial.println(client.remoteIP());
client.stop();
}
}
相关用法
- Arduino Ethernet - client.remotePort()用法及代码示例
- Arduino Ethernet - client.setConnectionTimeout()用法及代码示例
- Arduino Ethernet - client.connected()用法及代码示例
- Arduino Ethernet - client.available()用法及代码示例
- Arduino Ethernet - client.connect()用法及代码示例
- Arduino Ethernet - client.localPort()用法及代码示例
- Arduino Ethernet - server.begin()用法及代码示例
- Arduino Ethernet - EthernetUDP.parsePacket()用法及代码示例
- Arduino Ethernet - Ethernet.setRetransmissionTimeout()用法及代码示例
- Arduino Ethernet - Ethernet.MACAddress()用法及代码示例
- Arduino Ethernet - Ethernet.hardwareStatus()用法及代码示例
- Arduino Ethernet - EthernetUDP.beginPacket()用法及代码示例
- Arduino Ethernet - EthernetUDP.available()用法及代码示例
- Arduino Ethernet - Ethernet.localIP()用法及代码示例
- Arduino Ethernet - server.available()用法及代码示例
- Arduino Ethernet - EthernetUDP.read()用法及代码示例
- Arduino Ethernet - EthernetUDP.endPacket()用法及代码示例
- Arduino Ethernet - Ethernet.setDnsServerIP()用法及代码示例
- Arduino Ethernet - server.accept()用法及代码示例
- Arduino Ethernet - EthernetUDP.begin()用法及代码示例
- Arduino Ethernet - Ethernet.init()用法及代码示例
- Arduino Ethernet - Ethernet.setMACAddress()用法及代码示例
- Arduino Ethernet - if(server)用法及代码示例
- Arduino Ethernet - server.write()用法及代码示例
- Arduino Ethernet - UDP.remotePort()用法及代码示例
注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 Ethernet - client.remoteIP()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。