### Asterisk Channel Interface Usage Source: https://github.com/cycoresystems/audiosocket/blob/master/README.md This Asterisk dialplan snippet demonstrates connecting to an AudioSocket server using the channel interface. It specifies the server, port, UUID, and audio codec (slin). ```asterisk exten = 101,1,Verbose("Call to AudioSocket via Channel interface") same = n,Answer() same = n,Dial(AudioSocket/server.example.com:9092/40325ec2-5efd-4bd3-805f-53576e581d13/c(slin)) same = n,Hangup() ``` -------------------------------- ### Asterisk Dialplan Application Usage Source: https://github.com/cycoresystems/audiosocket/blob/master/README.md Use this snippet in your Asterisk dialplan to connect to an AudioSocket server using the dialplan application interface. Ensure the server address, port, and a unique UUID are correctly specified. ```asterisk exten = 100,1,Verbose("Call to AudioSocket via Dialplan Application") same = n,Answer() same = n,AudioSocket(40325ec2-5efd-4bd3-805f-53576e581d13,server.example.com:9092) same = n,Hangup() ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.