# Setup a DCC VOICE connection with Pragma (irc user)
dcc.voice Pragma
# Setup a DCC VOICE connection with Pragma and use the gsm codec
dcc.voice -g=gsm Pragma
# Setup a DCC VOICE connection with Pragma , use the gsm codec and 22050 Hz sampling rate
dcc.voice -g=gsm -h=22050 Pragma
# Setup a listening socket for a DCC VOICE connection on interface 127.0.0.1 and port 8088
dcc.voice -n -i=127.0.0.1 -p=8088 Pippo
# Connect to the socket above
dcc.voice -c -i=127.0.0.1 -p=8088 Pluto
# Same as above but use the NULL codec with 11025 Hz sampling rate
dcc.voice -g=null -h=11025 -n -i=127.0.0.1 -p=8088 Pippo
# Connect to the socket above
dcc.voice -g=null -h=11025 -c -i=127.0.0.1 -p=8088 Pluto
|