Now rtmpConnect1 is using after having gone in and started using C funcs, let's start to try and use mine instead

This commit is contained in:
saxon 2018-07-28 15:36:32 +09:30
parent 3215983163
commit 4062508078
1 changed files with 5 additions and 5 deletions

View File

@ -716,17 +716,17 @@ func rtmpConnect1(r *C.RTMP, cp *C.RTMPPacket) int {
if debugMode {
log.Println("... connected, handshaking...")
}
// TODO: port this
if handShake(r, 1) == 0 {
if C.HandShake(r, 1) == 0 {
//if handShake(r, 1) == 0 {
log.Println("rtmpConnect1: handshake failed!")
return 0
}
if debugMode {
log.Println("... handshaked...")
}
// TODO: port this
if sendConnectPacket(r, cp) == 0 {
if C.SendConnectPacket(r, cp) == 0 {
//if sendConnectPacket(r, cp) == 0 {
log.Println("RTMP connect failed!")
return 0
}