Files
epics-base/src/ca/caRepeater.c
1998-04-15 21:58:29 +00:00

34 lines
634 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 old IP kernels do not allow
* two processes on the same machine to get the same broadcast
* (and modern IP kernels do not allow two processes on the same machine
* to receive the same unicast).
*
* This code fans out UDP messages sent to the CA repeater port
* to all CA client processes that have subscribed.
*
* NOTES:
*
* see repeater.c
*
*/
#include "iocinf.h"
int main()
{
ca_repeater ();
assert (0);
return (0);
}