This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:20.04 | |
| RUN apt-get -qq update && apt-get -qq upgrade | |
| ENV NGINX_VERSION nginx-1.19.3 | |
| ENV FFMPEG_VERSION snapshot | |
| ENV NGINX_RTMP_MODULE_VERSION 1.2.1 | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| ENV TZ=America/New_York |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getGenericInterceptor(className, func, parameters) { | |
| args = [] | |
| for (i = 0; i < parameters.length; i++) { | |
| args.push('arg_' + i) | |
| } | |
| var script = "result = this.__FUNCNAME__(__SEPARATED_ARG_NAMES__);\nlogmessage = '__CLASSNAME__.__FUNCNAME__(' + __SEPARATED_ARG_NAMES__ + ') => ' + result;\nconsole.log(logmessage);\nreturn result;" | |
| script = script.replace(/__FUNCNAME__/g, func); | |
| script = script.replace(/__SEPARATED_ARG_NAMES__/g, args.join(', ')); | |
| script = script.replace(/__CLASSNAME__/g, className); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % concat, binary | |
| B1= <<1,2>>. | |
| B2= <<3,4>>. | |
| B3= <<B1/binary, B2/binary>>. | |
| % <<1,2,3,4>> |