go!go!go!
全部博文(188)
发布时间:2015-07-14 20:24:14
测试环境服务端: crtmpserver 10.58.132.150客户端:ipvtl 10.58.132.131以下为抓包截图:握手,连接,推流发布以下为断开包的状态:......【阅读全文】
发布时间:2015-07-05 09:15:04
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#0000CC;">[</span>test@localhost <span style="color:#0000CC;">~</span><span style="color:#0000CC;">/</span>src<sp.........【阅读全文】
发布时间:2015-05-29 14:06:18
一,golang中为类型添加方法example定义一个简单的类Integer,并为其添加方法package mainimport "fmt"type Integer intfunc (a Integer) Less(b Integer) bool {return a<b}func (a Integer) Add(b Integer) Integer {.........【阅读全文】
发布时间:2015-05-19 19:13:59
package mainimport "fmt"import "net/http"import "io/ioutil"import "strings"import "bufio"func httpGet() {resp, err := http.Get("http://localhost:8080/m3u8/xizang_350/desc.m3u8")if err != nil {.........【阅读全文】