diff options
-rw-r--r-- | omfwd.c | 14 | ||||
-rw-r--r-- | syslogd.c | 14 | ||||
-rw-r--r-- | syslogd.h | 1 |
3 files changed, 14 insertions, 15 deletions
@@ -104,6 +104,20 @@ CODESTARTdbgPrintInstInfo printf("%s", f->f_un.f_forw.f_hname); ENDdbgPrintInstInfo +/* get the syslog forward port from selector_t. The passed in + * struct must be one that is setup for forwarding. + * rgerhards, 2007-06-28 + * We may change the implementation to try to lookup the port + * if it is unspecified. So far, we use the IANA default auf 514. + */ +static char *getFwdSyslogPt(selector_t *f) +{ + assert(f != NULL); + if(f->f_un.f_forw.port == NULL) + return("514"); + else + return(f->f_un.f_forw.port); +} BEGINdoAction char *psz; /* temporary buffering */ @@ -1081,20 +1081,6 @@ void freeAllSockets(int **socks) } -/* get the syslog forward port from selector_t. The passed in - * struct must be one that is setup for forwarding. - * rgerhards, 2007-06-28 - * We may change the implementation to try to lookup the port - * if it is unspecified. So far, we use the IANA default auf 514. - */ -char *getFwdSyslogPt(selector_t *f) -{ - assert(f != NULL); - if(f->f_un.f_forw.port == NULL) - return("514"); - else - return(f->f_un.f_forw.port); -} /******************************************************************* @@ -76,7 +76,6 @@ void logerrorInt(char *type, int iErr); void printchopped(char *hname, char *msg, int len, int fd, int iSourceType); void freeAllSockets(int **socks); int isAllowedSender(struct AllowedSenders *pAllowRoot, struct sockaddr *pFrom, const char *pszFromHost); -char *getFwdSyslogPt(selector_t *f); void getCurrTime(struct syslogTime *t); int formatTimestampToMySQL(struct syslogTime *ts, char* pDst, size_t iLenDst); int formatTimestamp3339(struct syslogTime *ts, char* pBuf, size_t iLenBuf); |