Omit data types

This commit is contained in:
Julian Kornberger 2016-10-04 01:08:07 +02:00
parent cbd8048d31
commit d2be435308
1 changed files with 3 additions and 3 deletions

View File

@ -6,13 +6,13 @@ import (
const ( const (
// default multicast group used by announced // default multicast group used by announced
multiCastGroup string = "ff02:0:0:0:0:0:2:1001" multiCastGroup = "ff02:0:0:0:0:0:2:1001"
// default udp port used by announced // default udp port used by announced
port string = "1001" port = "1001"
// maximum receivable size // maximum receivable size
maxDataGramSize int = 8192 maxDataGramSize = 8192
) )
//Response of the respond request //Response of the respond request