예제 #1
0
파일: engines.go 프로젝트: postfix/go-ssl
func (self *ENGINE) GetNext() *ENGINE {
	return newEngine(C.ENGINE_get_next(self.engine))
}
예제 #2
0
파일: engine.go 프로젝트: vbatts/gossl
func (e *Engine) GetNext() *Engine {
	return New(C.ENGINE_get_next(e.eng))
}