xjdrew
xjdrew
code: https://github.com/pmusa/lmprof/blob/master/src/lmprof.c#L302 ```c if (nsize > osize && st->increment_alloc_count == 1) { st->alloc_count = st->alloc_count + (nsize - osize); } ``` when nsize < osize, it means memory reduce, why...
``` go numRead, _, err := conn.ReadFrom(buf) // why not recv packet source address if err != nil { log.Fatalf("ReadFrom: %s\n", err) } receiveTime = time.Now() //fmt.Printf("Received: % x\n", buf[:numRead])...
I implement net.Conn's function of SetDeadline and so on, I think it's useful.
Should change time consumed test such as TestStreeOps to Benchmark.
hello mkottman, I modified luacrypto to support lua5.2, could you review and merge to your master branch? Best regards, drew
根据rfc3629,每个字符只有一种有效的utf8编码,0只应该编码成0,不能是0xc080; ref:http://tools.ietf.org/html/rfc3629 1. Determine the number of octets required from the character number and the first column of the table above. It is important to note that the rows of...