mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
rtp session manager, stun codding
This commit is contained in:
parent
bc22ebe949
commit
51abb0844e
10 changed files with 356 additions and 19 deletions
28
trunk/src/protocol/srs_stun_stack.cpp
Normal file
28
trunk/src/protocol/srs_stun_stack.cpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
#include <srs_stun_stack.hpp>
|
||||
|
||||
using namespace std;
|
||||
|
||||
SrsStunPacket::SrsStunPacket()
|
||||
{
|
||||
}
|
||||
|
||||
SrsStunPacket::~SrsStunPacket()
|
||||
{
|
||||
}
|
||||
|
||||
string SrsStunPacket::username()
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
string SrsStunPacket::password()
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
srs_error_t SrsStunPacket::decode(const char* buf, const int& nb_buf)
|
||||
{
|
||||
srs_error_t err = srs_success;
|
||||
|
||||
return err;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue