-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathNetworking.go
More file actions
80 lines (67 loc) · 2.54 KB
/
Networking.go
File metadata and controls
80 lines (67 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*******************************************************
* Copyright (C) 2018 Palanjyan Zhorzhik
*
* This file is part of WS-Discovery project.
*
* WS-Discovery can be copied and/or distributed without the express
* permission of Palanjyan Zhorzhik
*******************************************************/
package WS_Discovery
import (
"fmt"
"net"
"golang.org/x/net/ipv4"
"time"
"log"
"github.com/satori/go.uuid"
)
const bufSize = 8192
func SendProbe(interfaceName string, scopes, types []string, namespaces map[string]string) []string{
// Creating UUID Version 4
uuidV4 := uuid.Must(uuid.NewV4())
//fmt.Printf("UUIDv4: %s\n", uuidV4)
probeSOAP := buildProbeMessage(uuidV4.String(), scopes, types, namespaces)
//probeSOAP = `<?xml version="1.0" encoding="UTF-8"?><Envelope xmlns="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing"><Header><a:Action mustUnderstand="1">http://schemas.xmlsoap.org/ws/2005/04/discovery/Probe</a:Action><a:MessageID>uuid:78a2ed98-bc1f-4b08-9668-094fcba81e35</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><a:To mustUnderstand="1">urn:schemas-xmlsoap-org:ws:2005:04:discovery</a:To></Header><Body><Probe xmlns="http://schemas.xmlsoap.org/ws/2005/04/discovery"><d:Types xmlns:d="http://schemas.xmlsoap.org/ws/2005/04/discovery" xmlns:dp0="http://www.onvif.org/ver10/network/wsdl">dp0:NetworkVideoTransmitter</d:Types></Probe></Body></Envelope>`
return sendUDPMulticast(probeSOAP.String(), interfaceName)
}
func sendUDPMulticast (msg string, interfaceName string) []string {
var result []string
data := []byte(msg)
iface, err := net.InterfaceByName(interfaceName)
if err != nil {
fmt.Println(err)
}
group := net.IPv4(239, 255, 255, 250)
c, err := net.ListenPacket("udp4", "0.0.0.0:1024")
if err != nil {
fmt.Println(err)
}
defer c.Close()
p := ipv4.NewPacketConn(c)
if err := p.JoinGroup(iface, &net.UDPAddr{IP: group}); err != nil {
fmt.Println(err)
}
dst := &net.UDPAddr{IP: group, Port: 3702}
for _, ifi := range []*net.Interface{iface} {
if err := p.SetMulticastInterface(ifi); err != nil {
fmt.Println(err)
}
p.SetMulticastTTL(2)
if _, err := p.WriteTo(data, nil, dst); err != nil {
fmt.Println(err)
}
}
if err := p.SetReadDeadline(time.Now().Add(time.Second * 1)); err != nil {
log.Fatal(err)
}
for {
b := make([]byte, bufSize)
n, _, _, err := p.ReadFrom(b)
if err != nil {
fmt.Println(err)
break
}
result = append(result, string(b[0:n]))
}
return result
}