This commit is contained in:
Asim
2016-04-29 23:53:34 +01:00
parent feb0629af0
commit 3590a367d8
7 changed files with 167 additions and 17 deletions

1
examples/service/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1,18 @@
# service
Compile + run:
```
go build
./service
```
[The, run the client](../service)
Use another service tag
```
./service <service-tag>
./service _foobarbaz._tcp
```

45
examples/service/main.go Normal file
View File

@@ -0,0 +1,45 @@
package main
import (
"log"
"os"
"os/signal"
"github.com/micro/mdns"
)
func main() {
serviceTag := "_foobar._tcp"
if len(os.Args) > 1 {
serviceTag = os.Args[1]
}
// Setup our service export
host, err := os.Hostname()
if err != nil {
log.Fatal(err)
}
info := []string{"My awesome service"}
service, err := mdns.NewMDNSService(host, serviceTag, "", "", 8000, nil, info)
if err != nil {
log.Fatal(err)
}
// Create the mDNS server, defer shutdown
server, err := mdns.NewServer(&mdns.Config{Zone: service})
if err != nil {
log.Fatal(err)
}
defer server.Shutdown()
wait()
}
func wait() {
ch := make(chan os.Signal)
signal.Notify(ch, os.Interrupt, os.Kill)
<-ch
}