mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 13:20:41 +01:00
imrelp checks if the relp version is supporting oversizeMode. If not then it is disabled and an error message is put out.
11 lines
175 B
C
11 lines
175 B
C
#include "config.h"
|
|
|
|
int main(int argc __attribute__((unused)), char *argv[]__attribute__((unused)))
|
|
{
|
|
#ifdef HAVE_RELPSRVSETOVERSIZEMODE
|
|
return 0;
|
|
#else
|
|
return 1;
|
|
#endif
|
|
}
|