You've already forked gitified_old_clb_svn
14 lines
305 B
C
14 lines
305 B
C
/*
|
|
* Aurelio Colosimo for CERN, 2011 -- GNU LGPL v2.1 or later
|
|
* Based on PTPd project v. 2.1.0 (see AUTHORS for details)
|
|
*/
|
|
|
|
#include <ppsi/ppsi.h>
|
|
|
|
int pp_disabled(struct pp_instance *ppi, unsigned char *pkt, int plen)
|
|
{
|
|
/* nothing to do */
|
|
ppi->next_delay = PP_DEFAULT_NEXT_DELAY_MS;
|
|
return 0;
|
|
}
|