av/rtmp/socket.go

100 lines
2.5 KiB
Go
Raw Normal View History

/*
NAME
rtmp.go
DESCRIPTION
See Readme.md
AUTHORS
Saxon Nelson-Milton <saxon@ausocean.org>
Dan Kortschak <dan@ausocean.org>
LICENSE
rtmp.go is Copyright (C) 2017 the Australian Ocean Lab (AusOcean)
It is free software: you can redistribute it and/or modify them
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
It is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
Derived from librtmp under the GNU Lesser General Public License 2.1
Copyright (C) 2005-2008 Team XBMC http://www.xbmc.org
Copyright (C) 2008-2009 Andrej Stepanchuk
Copyright (C) 2009-2010 Howard Chu
*/
package rtmp
import (
"errors"
2018-09-30 12:29:01 +03:00
"net"
2019-01-06 00:55:46 +03:00
"strconv"
"time"
)
// int RTMP_Connect(RTMP *r, RTMPPacket* cp);
// rtmp.c +1032
func C_RTMP_Connect(r *C_RTMP, cp *C_RTMPPacket) error {
if r.Link.host == "" {
return errors.New("Empty host")
}
2019-01-06 00:55:46 +03:00
addr, err := net.ResolveTCPAddr("tcp4", r.Link.host+":"+strconv.Itoa(int(r.Link.port)))
2018-09-30 12:29:01 +03:00
if err != nil {
return err
}
2019-01-02 13:58:20 +03:00
r.m_sb.conn, err = net.DialTCP("tcp4", nil, addr)
2018-09-30 12:29:01 +03:00
if err != nil {
return err
2018-10-01 02:36:41 +03:00
}
2019-01-02 13:58:20 +03:00
r.m_sb.timeout = r.Link.timeout
return C_RTMP_Connect1(r, cp)
}
2018-10-01 02:36:41 +03:00
// int SocksNegotiate(RTMP* r);
// rtmp.c +1062
// DELETED
2018-10-01 02:36:41 +03:00
// int RTMPSockBuf_Fill(RTMPSockBuf* sb);
// rtmp.c +4253
func C_RTMPSockBuf_Fill(sb *C_RTMPSockBuf) (int, error) {
if sb.sb_size == 0 {
sb.sb_start = 0
}
err := sb.conn.SetReadDeadline(time.Now().Add(time.Second * time.Duration(sb.timeout)))
2018-09-30 12:29:01 +03:00
if err != nil {
return 0, err
}
2019-01-06 00:55:46 +03:00
n, err := sb.conn.Read(sb.sb_buf[sb.sb_start+sb.sb_size:])
2018-09-30 12:29:01 +03:00
sb.sb_size += n
2019-01-06 00:55:46 +03:00
return n, err
}
// int RTMPSockBuf_Send(RTMPSockBuf* sb, const char* buf, int len);
// rtmp.c +4297
// TODO replace send with golang net connection send
func C_RTMPSockBuf_Send(sb *C_RTMPSockBuf, buf []byte) (int, error) {
err := sb.conn.SetWriteDeadline(time.Now().Add(time.Second * time.Duration(sb.timeout)))
if err != nil {
2019-01-06 00:55:46 +03:00
return 0, err
2018-09-30 12:29:01 +03:00
}
2019-01-06 00:55:46 +03:00
return sb.conn.Write(buf)
}
// int
// RTMPSockBuf_Close(RTMPSockBuf *sb)
// rtmp.c +4369
func C_RTMPSockBuf_Close(sb *C_RTMPSockBuf) error {
2019-01-06 00:55:46 +03:00
if sb.conn == nil {
return nil
}
2019-01-06 00:55:46 +03:00
return sb.conn.Close()
}