Skip to content

Instantly share code, notes, and snippets.

@porjo
porjo / mcast_pub.go
Last active January 28, 2019 22:49
Simple PUB-SUB using multicast, written in Go. The publisher sends the string 'hello' every 2 seconds to IPv4 multicast 224.0.0.1 on UDP port 5000
package main
import (
"bufio"
"fmt"
"net"
"time"
)
func main() {