Switch to unified view

a/src/mediaserver/cdplugins/streamproxy.h b/src/mediaserver/cdplugins/streamproxy.h
...
...
37
    UrlTransFunc;
37
    UrlTransFunc;
38
38
39
    StreamProxy(int listenport, UrlTransFunc urltrans);
39
    StreamProxy(int listenport, UrlTransFunc urltrans);
40
    ~StreamProxy();
40
    ~StreamProxy();
41
41
42
    void abortAll();
42
    // Debug and experiments: kill connections after ms mS
43
43
    void setKillAfterMs(int ms);
44
    
44
    class Internal;
45
    class Internal;
45
private:
46
private:
46
    std::unique_ptr<Internal> m;
47
    std::unique_ptr<Internal> m;
47
};
48
};
48
49