Files
epics-base/src/ca/caRepeater.c
1997-04-10 19:26:27 +00:00

31 lines
511 B
C

/*
* caRepeater.c
* share/src/ca/caRepeater.c
*
* CA broadcast repeater executable
*
* Author: Jeff Hill
* Date: 3-27-90
*
* PURPOSE:
* Broadcasts fan out over the LAN, but UDP does not allow
* two processes on the same machine to get the same broadcast.
* This code takes extends the broadcast model from the net to within
* the OS.
*
* NOTES:
*
* see repeater.c
*
*/
#include "iocinf.h"
int main()
{
ca_repeater ();
assert (0);
return (0);
}