Skip to content
This repository has been archived by the owner on Jul 13, 2021. It is now read-only.
/ multicast_lock Public archive

Flutter plugin for accessing android's MulticastLock

License

Notifications You must be signed in to change notification settings

analogic/multicast_lock

Repository files navigation

multicast_lock

Flutter plugin adding ability to access MulticastLock which is required for receiving broadcast and multicast UDP packets

Example code

pubspec.yaml:

...
dependencies:
  multicast_lock: any

example dart code:

import 'package:multicast_lock/multicast_lock.dart';


void main() {
  final multicastLock = new MulticastLock();
  multicastLock.acquire();
  
  // example listener code
  final socket = await RawDatagramSocket.bind('224.0.0.1', 1900);
  socket.multicastHops = 10;
  socket.broadcastEnabled = true;
  socket.writeEventsEnabled = true;
  socket.listen((RawSocketEvent event) {
    if (event == RawSocketEvent.read) {
      final datagramPacket = _socket.receive();
      if (datagramPacket == null) return;

      print("packet!");
      print(datagramPacket);
    }});
  
  
  // ...
  // we should release lock after listening
  multicastLock.release();
}

About

Flutter plugin for accessing android's MulticastLock

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published