예제 #1
0
파일: acceptor.go 프로젝트: chogaths/robin
func (self *binaryAcceptor) addSession(ses *netdef.Session) {

	ses.SessionID = atomic.AddInt64(&self.sesIDAcc, 1)

	self.sesMapGuard.Lock()
	self.sesMap[self.sesIDAcc] = ses
	self.sesMapGuard.Unlock()

}