mirror of
https://github.com/EiffelSoftware/eiffel-org.git
synced 2026-02-07 11:04:06 +01:00
git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1945 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
20 lines
888 B
Plaintext
20 lines
888 B
Plaintext
[[Property:title|Networking]]
|
|
[[Property:weight|-9]]
|
|
[[Property:uuid|4ddb235c-fea6-ee00-05af-6493e2c652a7]]
|
|
== Network communication solutions==
|
|
|
|
Many Eiffel applications take advantage of networking. The Eiffel solutions to support networking include three libraries with complementary purposes: EiffelNet, ZeroMQ and http_client.
|
|
|
|
|
|
* '''EiffelNet''':
|
|
: manipulation of sockets, network addresses, IPv4, IPv6. But also basic limited implementation for a few protocols. <code lang="shell">$ISE_LIBRARY/library/net/net.ecf</code>
|
|
|
|
* '''ZeroMQ''':
|
|
: wrapping for the [http://zeromq.org/ ZeroMQ] Distributed Messaging . [https://svn.eiffel.com/eiffelstudio/trunk/Src/library/zeromq]
|
|
|
|
* '''http_client''':
|
|
: simple web client to send http (GET, POST, ...) request and receive associated response. <code lang="shell">$ISE_LIBRARY/contrib/library/network/http_client/http_client.ecf</code>
|
|
|
|
|
|
|