Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADDED] Stream alternates in jsStreamInfo #611

Merged
merged 1 commit into from
Nov 4, 2022
Merged

Commits on Nov 4, 2022

  1. [ADDED] Stream alternates in jsStreamInfo

    `jsStreamInfo` will now possibly have a list of stream alternates
    represented by a mirror:
    ```
    typedef struct jsStreamInfo
    {
            (...)
            jsStreamAlternate       **Alternates;
            int                     AlternatesLen;
    
    } jsStreamInfo;
    
    The definition of a stream alternate is:
    ```
    typedef struct jsStreamAlternate
    {
            const char              *Name;
            const char              *Domain;
            const char              *Cluster;
    
    } jsStreamAlternate;
    ```
    
    Also added some of the new JS specific error codes.
    
    Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
    kozlovic committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    1e8a57c View commit details
    Browse the repository at this point in the history