aboutsummaryrefslogtreecommitdiff
path: root/embassy-net/src
Commit message (Collapse)AuthorAgeFilesLines
* correct spelling of the word "receive"Stefan Gehr2024-02-031-2/+2
|
* net: add packet-trace feature.Dario Nieuwenhuis2024-01-101-2/+11
|
* New embassy-net releaseScott Mabin2024-01-041-2/+0
|
* feat: impl ReadReady and WriteReady for tcpswanandx2024-01-031-0/+24
|
* Add set_hop_limit to UDP socketsLoïc Damien2023-12-281-0/+5
|
* Upgrade to smoltcp v0.11.Dario Nieuwenhuis2023-12-231-8/+17
|
* [embassy-net] Auto-documented feature flagsBarnaby Walters2023-12-221-0/+3
|
* chore: replace make_static! macro usage with non-macro versionUlf Lilleengen2023-12-211-2/+4
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-293-5/+3
|
* populate `medium` in DriverAdapter struct in IGMP codeStephan Wolski2023-11-191-0/+4
|
* Use smoltcp constant in results from DNSEmil Fresk2023-11-142-2/+10
|
* Update heapless to v0.8, embedded-nal-async to v0.7Dario Nieuwenhuis2023-11-102-5/+3
|
* Ensure TcpIo not blocking when reading into empty sliceDániel Buga2023-11-061-0/+7
|
* Re-add impl_trait_projectionsDániel Buga2023-10-301-1/+2
|
* net: Reset DHCP socket when the link up is detectedGabriel Górski2023-10-231-0/+3
| | | | | | | | | Previously, because DHCP DISCOVER is sent before the link is established, socket has to timeout first. Which takes extra 10 s. Now if the state of the link changed to up, socket is explicitly reset so the DISCOVER is repeated much earlier and DHCP configuration is acquired much faster.
* net/driver: remove Medium, make HardwareAddress non_exhaustive.Dario Nieuwenhuis2023-10-182-25/+30
|
* Wake stack's task after queueing a DNS queryDániel Buga2023-10-141-1/+4
|
* net: remove atomic-polyfill.Dario Nieuwenhuis2023-10-121-8/+7
|
* net: add support for dhcp hostname option.Dario Nieuwenhuis2023-10-071-0/+44
|
* Merge pull request #2014 from bugadani/udpUlf Lilleengen2023-10-051-1/+1
|\ | | | | | | Reexport IpListenEndpoint for TCP
| * Reexport IpListenEndpoint for TCPDániel Buga2023-10-051-1/+1
| |
* | Remove impl_trait_projections.Dario Nieuwenhuis2023-10-021-1/+1
|/
* net: allow non-'static drivers.Dario Nieuwenhuis2023-09-281-3/+3
|
* Fix doc typoPolly2023-09-141-1/+1
|
* add SocketNotBound error messageJuliDi2023-09-101-1/+10
|
* yield -> returnJulian2023-09-091-1/+1
| | | Co-authored-by: Dario Nieuwenhuis <[email protected]>
* improve docstringJuliDi2023-09-091-6/+5
|
* fix poll_fn, add documentationJuliDi2023-09-081-12/+41
|
* fix typosJuliDi2023-09-081-1/+1
|
* wait_config_up first stepsJuliDi2023-09-081-0/+26
|
* Merge pull request #1854 from bugadani/strDario Nieuwenhuis2023-09-033-11/+11
|\ | | | | embassy-{net, sync, time}: Use fmt::unwrap
| * Use fmt::unwrapDániel Buga2023-09-023-11/+11
| |
* | Sync all fmt.rs files.Dario Nieuwenhuis2023-08-301-6/+39
|/
* net: improve error message on unsupported medium.Dario Nieuwenhuis2023-08-251-1/+4
|
* net: allow changing IP config at runtime.Dario Nieuwenhuis2023-08-251-172/+148
|
* Merge pull request #1802 from avlec/error-translationDario Nieuwenhuis2023-08-181-2/+9
|\ | | | | | | Add error translation to tcp errors
| * add error translation to tcp errorsAlec Cox2023-08-181-2/+9
| | | | | | | | | | Translation of tpc client ConnectError and Error to the appropriate embedded_io_async errors
* | Add udp capacity implsScott Mabin2023-08-151-0/+20
| |
* | Add tcp capacity implsScott Mabin2023-08-151-0/+28
| |
* | embassy-net:tcp:send/recvScott Mabin2023-08-141-0/+102
|/ | | | - Add async versions of smoltcp's `send` and `recv` closure based API.
* Update to embedded-io 0.5 (#1752)Dario Nieuwenhuis2023-08-072-18/+18
|
* Only skip default-gateway assignment with Medium::IpRuben De Smet2023-07-311-5/+6
|
* Use hardware_address() for all mediaRuben De Smet2023-07-311-18/+2
|
* Add Ip hardware address to DriverRuben De Smet2023-07-311-0/+2
|
* Introduce driver::HardwareAddress without smoltcp dependencyRuben De Smet2023-07-311-4/+17
|
* Use HardwareAddress in DriverRuben De Smet2023-07-281-17/+10
|
* Add IEEE802.15.4 address to embassy net StackRuben De Smet2023-07-281-1/+8
|
* Allow ethernet and 802.15.4 to coexistRuben De Smet2023-07-281-4/+6
| | | | Co-authored-by: Thibaut Vandervelden <[email protected]>
* Merge branch 'main' of https://github.com/embassy-rs/embassy into macxoviat2023-07-211-21/+83
|\
| * Fix multicast support (#1670)ivmarkov2023-07-181-7/+55
| |