demo.c
/* demo.c - quick lash up to show
* remote control of Diskus
*
1987 Abekas Video Systems Inc.
*
* Based on an example proggys in the
* IPC Primer in ‘Networking on the
* Sun Workstation’
*/
#include <stdio.h>
#include <netdb.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
char login_str[] = "\0simon\0simon\0sun\0";
char play_fwd_str[] = "play\n";
char play_back_str[] = "play -1\n";
char stop_str[] = "stop\n";
int sd; /* global socket descriptor */
open_connection()
{
struct sockaddr_in skt;
struct servent *rlogin_service;
struct hostent *diskus;
int lport;
Diskus Technical Guide
File Formats
9100-0217-02 - SEP 95
Appendix
12-17
Summary of Contents for Diskus
Page 1: ...Diskus Digital Disk Recorder Manual ...
Page 477: ...NOTES Diskus Operations Index 9100 0217 02 SEP 95 Index xvii ...
Page 478: ...NOTES Index Diskus Operations xviii Index 9100 0217 02 SEP 95 ...
Page 479: ...NOTES Diskus Operations Index 9100 0217 02 SEP 95 Index xix ...
Page 480: ...NOTES Index Diskus Operations xx Index 9100 0217 02 SEP 95 ...