├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── broadcast.rs └── multicast.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/over-codes/autodiscover-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/over-codes/autodiscover-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/over-codes/autodiscover-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/over-codes/autodiscover-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/broadcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/over-codes/autodiscover-rs/HEAD/examples/broadcast.rs -------------------------------------------------------------------------------- /examples/multicast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/over-codes/autodiscover-rs/HEAD/examples/multicast.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/over-codes/autodiscover-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------