| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 | | package com.genersoft.iot.vmp.media.zlm.dto; |  |   |  | /** |  |  * hook类型 |  |  * @author lin |  |  */ |  |   |  | public enum HookType { |  |   |  |     on_flow_report, |  |     on_http_access, |  |     on_play, |  |     on_publish, |  |     on_record_mp4, |  |     on_rtsp_auth, |  |     on_rtsp_realm, |  |     on_shell_login, |  |     on_stream_changed, |  |     on_stream_none_reader, |  |     on_stream_not_found, |  |     on_server_started, |  |   |  |     on_rtp_server_timeout, |  |     on_server_keepalive, |  |     on_send_rtp_stopped |  | } | 
 |