6FLASHMEM
int EthernetClient::connect(IPAddress ip, uint16_t port) {
return hal_->connect(ip, port); }
9FLASHMEM
int EthernetClient::connect(
const char *host, uint16_t port) {
return hal_->connect(host, port); }
14FLASHMEM
int EthernetClient::connectNoWait(
const IPAddress &ip, uint16_t port) {
15 return hal_->connectNoWait(ip, port);
19FLASHMEM
int EthernetClient::connectNoWait(
const char *host, uint16_t port) {
20 return hal_->connectNoWait(host, port);
23FLASHMEM uint8_t EthernetClient::connected() {
return hal_->connected(); }
25FLASHMEM EthernetClient::operator bool() {
return hal_->operator bool(); }
27FLASHMEM
void EthernetClient::setConnectionTimeout(uint16_t timeout) {
28 return hal_->setConnectionTimeout(timeout);
32FLASHMEM uint16_t EthernetClient::connectionTimeout()
const {
return hal_->connectionTimeout(); }
34FLASHMEM
void EthernetClient::stop() {
return hal_->stop(); }
38FLASHMEM
void EthernetClient::close() {
return hal_->close(); }
41FLASHMEM
void EthernetClient::closeOutput() {
return hal_->closeOutput(); }
44FLASHMEM
void EthernetClient::abort() {
return hal_->abort(); }
46FLASHMEM uint16_t EthernetClient::localPort() {
return hal_->localPort(); }
48FLASHMEM IPAddress EthernetClient::remoteIP() {
return hal_->remoteIP(); }
50FLASHMEM uint16_t EthernetClient::remotePort() {
return hal_->remotePort(); }
54FLASHMEM IPAddress EthernetClient::localIP() {
return hal_->localIP(); }
67FLASHMEM uintptr_t EthernetClient::connectionId() {
return hal_->connectionId(); }
73FLASHMEM
size_t EthernetClient::writeFully(uint8_t b) {
return hal_->writeFully(b); }
75FLASHMEM
size_t EthernetClient::writeFully(
const char *s) {
return hal_->writeFully(s); }
77FLASHMEM
size_t EthernetClient::writeFully(
const char *s,
size_t size) {
return hal_->writeFully(s,
size); }
79FLASHMEM
size_t EthernetClient::writeFully(
const uint8_t *buf,
size_t size) {
80 return hal_->writeFully(buf,
size);
83FLASHMEM
size_t EthernetClient::write(uint8_t b) {
return hal_->write(b); }
85FLASHMEM
size_t EthernetClient::write(
const uint8_t *buf,
size_t size) {
return hal_->write(buf,
size); }
87FLASHMEM
int EthernetClient::availableForWrite() {
return hal_->availableForWrite(); }
89FLASHMEM
void EthernetClient::flush() {
return hal_->flush(); }
91FLASHMEM
int EthernetClient::available() {
return hal_->available(); }
93FLASHMEM
int EthernetClient::read() {
return hal_->read(); }
97FLASHMEM
int EthernetClient::read(uint8_t *buf,
size_t size) {
return hal_->read(); }
99FLASHMEM
int EthernetClient::peek() {
return hal_->peek(); }
108FLASHMEM
void EthernetClient::setNoDelay(
bool flag) {
return hal_->setNoDelay(flag); }
112FLASHMEM
bool EthernetClient::isNoDelay() {
return hal_->isNoDelay(); }