Textually #included by:
vc-camera.setl (Section A.4 [vc-camera.setl])
vc-do.setl (Section A.11 [vc-do.setl])
vc-event.setl (Section A.12 [vc-event.setl])
vc-giver.setl (Section A.17 [vc-giver.setl])
vc-httpd.setl (Section A.19 [vc-httpd.setl])
vc-image.setl (Section A.20 [vc-image.setl])
vc-javent.setl (Section A.23 [vc-javent.setl])
vc-mouse.setl (Section A.28 [vc-mouse.setl])
vc-ptz.setl (Section A.33 [vc-ptz.setl])
vc-push.setl (Section A.34 [vc-push.setl])
vc-simpler.setl (Section A.40 [vc-simpler.setl])
vc-snap.setl (Section A.41 [vc-snap.setl])
vc-toplev.setl (Section A.42 [vc-toplev.setl])
Source code: *
-- Return the best available identifier of a client, including the
-- IP name if possible (otherwise just the IP address) followed by
-- a colon and the remote (usually ephemeral) port number.
op getname (fd);
return (peer_name fd ? peer_address fd ? `ANONYMOUS') + `:' +
str peer_port fd;
end op;