https://github.com/dart-community/datagram-socket
A buffered interface to a UDP socket.
https://github.com/dart-community/datagram-socket
dart network socket udp
Last synced: 13 days ago
JSON representation
A buffered interface to a UDP socket.
- Host: GitHub
- URL: https://github.com/dart-community/datagram-socket
- Owner: dart-community
- License: mit
- Created: 2025-11-11T12:58:46.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-11-11T13:10:26.000Z (8 months ago)
- Last Synced: 2026-05-15T15:12:03.596Z (about 1 month ago)
- Topics: dart, network, socket, udp
- Language: Dart
- Homepage: https://pub.dev/packages/datagram_socket
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## Datagram Socket
Provides a buffered interface to a
[RawDatagramSocket](https://api.dart.dev/dart-io/RawDatagramSocket-class.html)-backed
UDP socket.
The Dart SDK itself does not provide a high-level wrapper around
`RawDatagramSocket` in the same way it provides `Socket` to wrap `RawSocket`.
This package exists to provide such a wrapper, to make it easier to correctly
implement sending and receiving UDP datagrams.