mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@485 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			21 lines
		
	
	
		
			761 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			761 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| The manager is a client/server model over TCP.
 | |
| 
 | |
| Mangement communication consists of tags of the form "header: value", 
 | |
| terminated with an empty newline (\r\n) in the style of SMTP, HTTP, and
 | |
| other headers.
 | |
| 
 | |
| The first tag MUST be one of the following:
 | |
| 
 | |
| Action: An action requested by the CLIENT to the Asterisk SERVER.  Only 
 | |
| one "Action" may be outstanding at any time.
 | |
| 
 | |
| Response: A response to an action from the Asterisk SERVER to the CLIENT.
 | |
| 
 | |
| Event: An event reported by the Asterisk SERVER to the CLIENT
 | |
| 
 | |
| Management users are configured in /etc/asterisk/manager.conf and are 
 | |
| given permissions for read and write, where write represents their ability 
 | |
| to perform this class of "action", and read represents their ability to 
 | |
| receive this class of "event".
 | |
| 
 |