#networking-sockets #sockets #service #async-networking #datagram #async #network-services #api-bindings

aloe-network

Aloe-Network provides utilities for robust network communication, including TCP/UDP sockets, asynchronous updates, and network service discovery. This crate is a translation of the c++ juce module serving the same function.

2 releases

Uses new Rust 2024

new 0.1.2 Apr 2, 2025
0.1.0 Apr 2, 2025

#6 in #network-services

Download history 87/week @ 2025-03-28

87 downloads per month
Used in 168 crates (31 directly)

GPL-3.0 license

1.5MB
13K SLoC

Aloe-Network

Aloe-Network is a Rust crate designed to facilitate network communication using a variety of protocols and utilities. It provides low-level constructs for socket management, along with abstractions for asynchronous updates and message callbacks. The crate is robust in handling both TCP and UDP socket communications and offers extended capabilities such as network service discovery and data streaming from web resources.

Features

  • StreamingSocket: A TCP socket handler supporting synchronous and asynchronous communication.
  • DatagramSocket: A UDP handler allowing quick and lightweight datagram transmissions.
  • Network Service Discovery: Broadcasts and listens for network services, allowing automatic service recognition.
  • Asynchronous Updating Mechanism: Simplifies queuing and executing tasks asynchronously without manual thread handling.
  • WebInputStream: HTTP input stream that reads data over the network from a specified URL, supporting header management and stream positioning.

Getting Started

To use Aloe-Network, add it as a dependency in your Cargo.toml:

[dependencies]
aloe-network = "0.1.0"

Example Usage

use aloe_network::{StreamingSocket, DatagramSocket, NetworkServiceDiscoveryAdvertiser};

fn example() {
    // Create a new TCP streaming socket
    let mut socket = StreamingSocket::default();
    socket.connect("example.com", 80, None);

    // Create a new Datagram socket
    let udp_socket = DatagramSocket::new(Some(true));

    // Advertise a network service
    let advertiser = NetworkServiceDiscoveryAdvertiser::new(&"_example._tcp", &"Example Service", 0, 5000, None);
}

Advanced Topics

TCP/IP Networking

Aloe-Network offers robust socket interfaces that are cross-platform and handle both IPv4 and IPv6.

Event-Driven Programming

The crate is designed with asynchronous programming paradigms in mind, allowing apps to handle network events and updates efficiently.

Network Service Discovery

Facilitates automatic service discovery over a network using broadcasting features, suitable for scalable and dynamic service environments.

Contribution and License

Contributions to expand and improve Aloe-Network are welcome. Please adhere to the code of conduct found in the repository.

The project is licensed under the GPL-3.0 License.


Note: This README.md file was generated by an AI model and may not be 100% accurate, however it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~12–26MB
~358K SLoC