-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
35 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,9 @@ CONTRIBUTORS ordered by first contribution. | |
* allspace<[email protected]> "The srs-librtmp windows support" | ||
* niesongsong<[email protected]> "Configure support relative path" | ||
* rudeb0t<[email protected]> "Bug fixed" | ||
* CallMeNP<[email protected]> "Bug fixed" | ||
* synote<[email protected]> "Bug fixed" | ||
* lovecat<[email protected]> "Bug fixed" | ||
* panda1986<[email protected]> "Bug fixed" | ||
* YueHonghui<[email protected]> "Bug fixed" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,22 +33,27 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
#define VERSION_MINOR 0 | ||
#define VERSION_REVISION 206 | ||
|
||
// server info. | ||
// generated by configure, only macros. | ||
#include <srs_auto_headers.hpp> | ||
|
||
// provider info. | ||
#define RTMP_SIG_SRS_KEY "SRS" | ||
#define RTMP_SIG_SRS_CODE "ZhouGuowen" | ||
#define RTMP_SIG_SRS_ROLE "origin/edge server" | ||
#define RTMP_SIG_SRS_AUTHROS "winlin,wenjie.zhao" | ||
// contact info. | ||
#define RTMP_SIG_SRS_WEB "http://ossrs.net" | ||
#define RTMP_SIG_SRS_EMAIL "[email protected]" | ||
// debug info. | ||
#define RTMP_SIG_SRS_ROLE "cluster" | ||
#define RTMP_SIG_SRS_NAME RTMP_SIG_SRS_KEY"(Simple RTMP Server)" | ||
#define RTMP_SIG_SRS_URL_SHORT "github.com/ossrs/srs" | ||
#define RTMP_SIG_SRS_URL "https://"RTMP_SIG_SRS_URL_SHORT | ||
#define RTMP_SIG_SRS_WEB "http://ossrs.net" | ||
#define RTMP_SIG_SRS_EMAIL "[email protected]" | ||
#define RTMP_SIG_SRS_LICENSE "The MIT License (MIT)" | ||
#define RTMP_SIG_SRS_COPYRIGHT "Copyright (c) 2013-2015 SRS(ossrs)" | ||
#define RTMP_SIG_SRS_PRIMARY "SRS/"VERSION_STABLE_BRANCH | ||
#define RTMP_SIG_SRS_AUTHROS "winlin,wenjie.zhao" | ||
#define RTMP_SIG_SRS_PRIMARY RTMP_SIG_SRS_KEY"/"VERSION_STABLE_BRANCH | ||
#define RTMP_SIG_SRS_CONTRIBUTORS_URL RTMP_SIG_SRS_URL"/blob/master/AUTHORS.txt" | ||
#define RTMP_SIG_SRS_HANDSHAKE RTMP_SIG_SRS_KEY"("RTMP_SIG_SRS_VERSION")" | ||
#define RTMP_SIG_SRS_RELEASE RTMP_SIG_SRS_URL"/tree/1.0release" | ||
#define RTMP_SIG_SRS_RELEASE RTMP_SIG_SRS_URL"/tree/"VERSION_STABLE_BRANCH".0release" | ||
#define RTMP_SIG_SRS_ISSUES(id) RTMP_SIG_SRS_URL"/issues/"#id | ||
#define RTMP_SIG_SRS_VERSION SRS_XSTR(VERSION_MAJOR)"."SRS_XSTR(VERSION_MINOR)"."SRS_XSTR(VERSION_REVISION) | ||
#define RTMP_SIG_SRS_SERVER RTMP_SIG_SRS_KEY"/"RTMP_SIG_SRS_VERSION"("RTMP_SIG_SRS_CODE")" | ||
|
@@ -90,8 +95,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
#include <stddef.h> | ||
#include <sys/types.h> | ||
|
||
// generated by configure. | ||
#include <srs_auto_headers.hpp> | ||
// important performance options. | ||
#include <srs_core_performance.hpp> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters