Hi Timon, Timon Reinhard schrieb: > Is there some way to implement kind of a primitive access control > (especially for oflaDemo)? I really don't want anybody to publish > streams through my server ;-) > > Any hint where to start?
see these interfaces on how to limit access to streams: http://dl.fancycode.com/red5/api/org/red5/server/api/stream/IStreamPlaybackSecurity.html http://dl.fancycode.com/red5/api/org/red5/server/api/stream/IStreamPublishSecurity.html You can register your handlers using the "registerStreamPlaybackSecurity" and "registerStreamPublishSecurity" methods of ApplicationAdapter. A sample implementation that denies all access to streams is given by http://dl.fancycode.com/red5/api/org/red5/server/api/stream/support/DenyAllStreamAccess.html Joachim _______________________________________________ Red5 mailing list [email protected] http://osflash.org/mailman/listinfo/red5_osflash.org
