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: java-Xs/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
  • 13 commits
  • 10 files changed
  • 3 contributors

Commits on Jun 1, 2017

  1. Set max RTMP chunk size.

    arut committed Jun 1, 2017
    Configuration menu
    Copy the full SHA
    ed23a34 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2017

  1. Configuration menu
    Copy the full SHA
    1cdeb07 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e636a04 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2017

  1. Configuration menu
    Copy the full SHA
    43f1e42 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2017

  1. Add "fall through" comments

    Without these comments gcc7 will complain (-Wimplicit-fallthrough).
    
    This fixes arut#1109.
    Martyn Jarvis committed Sep 28, 2017
    Configuration menu
    Copy the full SHA
    716d3c8 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2017

  1. Merge pull request arut#1125 from martynjarvis/fall-through-comments

    Add  "fall through" comments to stop GCC 7 complaining
    arut authored Nov 29, 2017
    Configuration menu
    Copy the full SHA
    791b613 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2020

  1. Configuration menu
    Copy the full SHA
    afd350e View commit details
    Browse the repository at this point in the history

Commits on May 24, 2021

  1. Fixed buffer overrun after changing chunk size.

    Thanks to Zengxian Ding.
    arut committed May 24, 2021
    Configuration menu
    Copy the full SHA
    2f2db81 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2021

  1. Fixed null pointer dereference while reading AMF.

    Thanks to Zengxian Ding.
    arut committed May 25, 2021
    Configuration menu
    Copy the full SHA
    23e1873 View commit details
    Browse the repository at this point in the history

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