This repository is deprecated! We've moved all EO objects from this repository to objectionary/eo.
EOLANG socket object.
This is how to connect to a TCP server and send 88:
+alias org.eolang.net.socket
[] > main
seq > @
as-output. > output
connect.
socket
"localhost"
8080
output.write 88
output.flush
Server:
# Create TCP server and echo
+alias org.eolang.net.socket
[] > main
seq > @
write.
as-output. > output
accept. > conn
listen.
socket
"localhost"
8080
conn.as-input.read
output.flush
Fork repository, make changes, send us a pull request.
We will review your changes and apply them to the main
branch shortly,
provided they don't violate our quality standards. To avoid frustration,
before sending us your pull request please run full Maven build:
$ mvn clean install -Pqulice
You will need Maven 3.3+ and Java 8+.