(interface-write interface frame)
This procedure writes (injects) a frame (string / byte vector) to the specified interface.
If write() returns the number of bytes passed, ok is returned, otherwise #f.
> (define i (interface-attach "en1"))
i
> (define frame (interface-read i))
frame
> (interface-write i frame)
ok
>