1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

librtmp: create socket

This commit is contained in:
winlin 2014-03-02 09:28:44 +08:00
parent f8335e2c1f
commit feaf0c5e89
2 changed files with 29 additions and 3 deletions

View file

@ -33,10 +33,13 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
class SimpleSocketStream
{
private:
int fd;
public:
SimpleSocketStream(int fd);
SimpleSocketStream();
virtual ~SimpleSocketStream();
public:
virtual int create_socket();
};
#endif