Replaced all proto numbers in netutils with the defined const

Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
This commit is contained in:
Jana Radhakrishnan 2015-05-04 07:24:11 +00:00
parent db2f7c6f28
commit 560d156e36
1 changed files with 6 additions and 6 deletions

View File

@ -134,11 +134,11 @@ type Protocol uint8
func (p Protocol) String() string {
switch p {
case 1:
case ICMP:
return "icmp"
case 6:
case TCP:
return "tcp"
case 17:
case UDP:
return "udp"
default:
return fmt.Sprintf("%d", p)
@ -149,11 +149,11 @@ func (p Protocol) String() string {
func ParseProtocol(s string) Protocol {
switch strings.ToLower(s) {
case "icmp":
return 1
return ICMP
case "udp":
return 17
return UDP
case "tcp":
return 6
return TCP
default:
return 0
}