sendmulticast

データをマルチキャスト送信する。

sendmulticast <multicastname> <data1> <data2>....

解説

<data> を <multicastname> 引数で指定した端末へマルチキャスト送信し、端末からホストへ送信させる。
端末の識別は、setmulticastnameコマンドかコマンドラインオプションで事前に設定しておく。
<data> が文字列型の場合、文字列を送信させる。
<data> が整数型の場合は、その値の下位バイト(0-255)を ASCII コードとみなし、その文字を送信させる。

AcceptBroadcastが無効の端末では、送信データが破棄されます。

; TerminalA
setmulticastname 'screen1'
; Do not receive any strings.
; TerminalB
setmulticastname 'screen2'
; The 'violin' string will be sent by the TerminalD.
; TerminalC
setmulticastname 'screen2'
; The 'violin' string will be sent by the TerminalD.
; TerminalD
setmulticastname 'screen3'
sendmulticast 'screen2' 'violin' 13 10     ; Multicast transmission
; Do not receive any strings.