25 |
|
private: |
26 |
|
_H<api::Thread> block; |
27 |
|
_H<api::Process> process; |
28 |
+ |
const _L<ext::String>& extensions; |
29 |
+ |
ext::RedBlackMap<ext::String, ext::String> shares; |
30 |
|
int Destroy() { return process->Join(); } |
31 |
|
protected: |
32 |
|
virtual void Process(const net::Http::Request& request, net::Http::Response& response); |
33 |
|
public: |
34 |
< |
DecentralizedMedia(); |
34 |
> |
ext::RedBlackSet<ext::String> media; |
35 |
> |
DecentralizedMedia(const _L<ext::String>& extensions, const _L<ext::String>& locals); |
36 |
|
virtual ~DecentralizedMedia(); |
37 |
|
}; |
38 |
|
|