File tree Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/arduino/go-paths-helper v1.6.1 // indirect
7
7
github.com/arduino/go-properties-orderedmap v1.5.0
8
- github.com/arduino/pluggable-discovery-protocol-handler v1.1 .0
8
+ github.com/arduino/pluggable-discovery-protocol-handler v1.2 .0
9
9
github.com/brutella/dnssd v1.1.1
10
10
github.com/miekg/dns v1.1.31 // indirect
11
11
golang.org/x/crypto v0.0.0-20201002094018-c90954cbb977 // indirect
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ github.com/arduino/go-paths-helper v1.6.1/go.mod h1:V82BWgAAp4IbmlybxQdk9Bpkz8M4
4
4
github.com/arduino/go-properties-orderedmap v1.4.0 /go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk =
5
5
github.com/arduino/go-properties-orderedmap v1.5.0 h1:istmr13qQN3nneuU3lsqlMvI6jqB3u8QUfVU1tX/t/8 =
6
6
github.com/arduino/go-properties-orderedmap v1.5.0 /go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk =
7
- github.com/arduino/pluggable-discovery-protocol-handler v1.1 .0 h1:/fYOQ9f6beV9+mv9rDs+kvkhNKJ1edIT0RvIRj5Jj4U =
8
- github.com/arduino/pluggable-discovery-protocol-handler v1.1 .0 /go.mod h1:vQfYGJnunfcscLoUcZKqJBlEkZ/qiE28TQj+RV9UT74 =
7
+ github.com/arduino/pluggable-discovery-protocol-handler v1.2 .0 h1:gw6W8CtgGc+kh+DKfh+z6cUVPqaZh9Tu3XCt/uGgJUE =
8
+ github.com/arduino/pluggable-discovery-protocol-handler v1.2 .0 /go.mod h1:vQfYGJnunfcscLoUcZKqJBlEkZ/qiE28TQj+RV9UT74 =
9
9
github.com/brutella/dnssd v1.1.1 h1:Ar5ytE2Z9x5DTmuNnASlMTBpcQWQLm9ceHb326s0ykg =
10
10
github.com/brutella/dnssd v1.1.1 /go.mod h1:9gIcMKQSJvYlO2x+HR50cqqjghb9IWK9hvykmyveVVs =
11
11
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8 =
Original file line number Diff line number Diff line change @@ -50,11 +50,6 @@ func (d *MDNSDiscovery) Hello(userAgent string, protocolVersion int) error {
50
50
return nil
51
51
}
52
52
53
- // Start handles the pluggable-discovery START command
54
- func (d * MDNSDiscovery ) Start () error {
55
- return nil
56
- }
57
-
58
53
// Stop handles the pluggable-discovery STOP command
59
54
func (d * MDNSDiscovery ) Stop () error {
60
55
if d .cancelFunc != nil {
@@ -68,11 +63,6 @@ func (d *MDNSDiscovery) Stop() error {
68
63
func (d * MDNSDiscovery ) Quit () {
69
64
}
70
65
71
- // List handles the pluggable-discovery LIST command
72
- func (d * MDNSDiscovery ) List () ([]* discovery.Port , error ) {
73
- return []* discovery.Port {}, nil
74
- }
75
-
76
66
// StartSync handles the pluggable-discovery START_SYNC command
77
67
func (d * MDNSDiscovery ) StartSync (eventCB discovery.EventCallback , errorCB discovery.ErrorCallback ) error {
78
68
addFn := func (srv dnssd.Service ) {
You can’t perform that action at this time.
0 commit comments