码迷,mamicode.com
首页 > 其他好文 > 详细

Go学习——网络

时间:2014-07-29 16:24:10      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   os   for   ar   时间   size   学习   网络   

端口扫描:

package main

import (
	"fmt"
	"net"
	"strconv"
)

func main() {
	service := "localhost:"
	//从1号端口扫描到1000号
	for port := 1; port < 1000; port++ {
		_, err := net.DialTimeout("tcp", service+strconv.Itoa(port), 1000000000) //连接时间为1秒超过1秒视为失败
		if err == nil {
			fmt.Println(port)
		}
	}
}


Go学习——网络,布布扣,bubuko.com

Go学习——网络

标签:style   os   for   ar   时间   size   学习   网络   

原文地址:http://my.oschina.net/u/1537881/blog/295519

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!