Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Socket Wrapper: fix close and connected functions#227

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Draft
leonardocavagnis wants to merge2 commits intoarduino:main
base:main
Choose a base branch
Loading
fromleonardocavagnis:eth_wrapper_fix
Draft
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
/*
Advanced Chat Server

A more advanced server that distributes any incoming messages
to all connected clients but the client the message comes from.
To use, telnet to your device's IP address and type.

Usage:
1. Upload this sketch to your board.
2. Make sure your board is connected to the network and note its IP address.
3. From a computer on the same network, open a terminal and connect via Telnet:

- On macOS or Linux (using netcat if telnet is not available):
telnet <board_ip> 23
# or, if telnet is missing:
nc <board_ip> 23

- On Windows (Command Prompt):
telnet <board_ip> 23
# If 'telnet' is not recognized, enable it in "Windows Features".

4. Type a message and press Enter.
Your message will be broadcast to all connected clients except you.

Example:
telnet 192.168.1.177 23

Press CTRL + ] then 'quit' to exit Telnet.

*/

#include "ZephyrServer.h"
#include "ZephyrClient.h"
#include "ZephyrEthernet.h"

// The IP address will be dependent on your local network.
// gateway and subnet are optional:
IPAddress ip(192, 168, 2, 9); // Un IP libero nella subnet 192.168.2.x
IPAddress myDns(192, 168, 2, 1); // Di solito si usa il gateway come DNS
IPAddress gateway(192, 168, 2, 1); // IP del bridge/router
IPAddress subnet(255, 255, 255, 0); // Subnet mask della rete

// telnet defaults to port 23
ZephyrServer server(23);

ZephyrClient clients[8];

void setup() {
// start serial port:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}

// in Zephyr system check if Ethernet is ready before proceeding to initialize
Serial.print("Waiting for link on");
while (Ethernet.linkStatus() != LinkON) {
Serial.print(".");
delay(100);
}
Serial.println();

// initialize the Ethernet device
Ethernet.begin(ip, myDns, gateway, subnet);

// Check for Ethernet hardware present
if (Ethernet.hardwareStatus() == EthernetNoHardware) {
Serial.println("Ethernet shield was not found. Sorry, can't run without hardware. :(");
while (true) {
delay(1); // do nothing, no point running without Ethernet hardware
}
}
if (Ethernet.linkStatus() == LinkOFF) {
Serial.println("Ethernet cable is not connected.");
}

// start listening for clients
server.begin();

Serial.print("Chat server address:");
Serial.println(Ethernet.localIP());
}

void loop() {
// check for any new client connecting, and say hello (before any incoming data)
ZephyrClient newClient = server.accept();
if (newClient) {
for (byte i=0; i < 8; i++) {
if (!clients[i]) {
Serial.print("We have a new client #");
Serial.println(i);
newClient.print("Hello, client number: ");
newClient.println(i);
// Once we "accept", the client is no longer tracked by EthernetServer
// so we must store it into our list of clients
clients[i] = newClient;
break;
}
}
}

// check for incoming data from all clients
for (byte i=0; i < 8; i++) {
if (clients[i] && clients[i].available() > 0) {
// read bytes from a client
byte buffer[80];
int count = clients[i].read(buffer, 80);
Serial.println(count);
// write the bytes to all other connected clients
for (byte j=0; j < 8; j++) {
if (j != i && clients[j].connected()) {
clients[j].write(buffer, count);
}
}
}
}

// stop any clients which disconnect
for (byte i=0; i < 8; i++) {
if (clients[i] && !clients[i].connected()) {
Serial.print("disconnect client #");
Serial.println(i);
clients[i].stop();
}
}
}
3 changes: 0 additions & 3 deletionslibraries/SocketWrapper/SocketWrapper.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,9 +22,6 @@ class ZephyrSocketWrapper {
}

~ZephyrSocketWrapper() {
if (sock_fd != -1) {
::close(sock_fd);
}
}

bool connect(const char *host, uint16_t port) {
Expand Down
11 changes: 11 additions & 0 deletionslibraries/SocketWrapper/ZephyrClient.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
#pragma once

#include "SocketWrapper.h"
Expand DownExpand Up@@ -40,7 +40,18 @@
return ret;
}
#endif

uint8_t connected() override {
if (sock_fd == -1) return false;

uint8_t buf;
int ret = ::recv(sock_fd, &buf, 1, MSG_PEEK | MSG_DONTWAIT);
if (ret == 0) {
_connected = false;
::close(sock_fd);
sock_fd = -1;
return false;
}
return _connected;
}

Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp