Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mstyp/nginx-rtmp-module
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: arut/nginx-rtmp-module
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Apr 3, 2024

  1. Fixed unused variable warining.

    arut committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    c56fd73 View commit details
    Browse the repository at this point in the history
  2. Added propagation of the "wildcard" flag to c->listening.

    The change repeats nginx commit cb149fa03367 and is needed for stream pass
    module to be able to pass connections to rtmp.
    arut committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    6f9fa49 View commit details
    Browse the repository at this point in the history
  3. SSL shutdown for rtmps.

    While rtmp module does not support SSL, starting from nginx 1.25.5 an SSL
    connection can be passed from nginx stream pass module.  Such connections
    should be shut down on connection closure.
    
    An rtmps example:
    
    rtmp {
        server {
            listen 1935; # rtmp
            application foo {
                live on;
            }
        }
    }
    
    stream {
        server {
            listen 1936 ssl; # rtmps
            ssl_certificate example.com.crt;
            ssl_certificate_key example.com.key;
            pass 127.0.0.1:1935;
        }
    }
    arut committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    2fb11df View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2024

  1. Fixed compilation with clang.

    Thanks to Dmitry Tsidilin.
    arut committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    6c7719d View commit details
    Browse the repository at this point in the history
Loading