diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-07-01 13:28:17 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-07-01 13:28:17 +0200 |
commit | d6faee67b413d1f257c96a14e46f15ec1868a365 (patch) | |
tree | ed14d4a3446251b502c2587656bc0e09437cb230 /tcps_sess.h | |
parent | f76881fff39b46630d95a8d8308f383bec1b8be8 (diff) | |
download | rsyslog-d6faee67b413d1f257c96a14e46f15ec1868a365.tar.gz rsyslog-d6faee67b413d1f257c96a14e46f15ec1868a365.tar.xz rsyslog-d6faee67b413d1f257c96a14e46f15ec1868a365.zip |
RcvFromIP now also a property
This sets stage to enable use of the property-interface to speed
up things (mildly), the next step to be done. I have also fixed one
regression of yesterday's changes.
Diffstat (limited to 'tcps_sess.h')
-rw-r--r-- | tcps_sess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcps_sess.h b/tcps_sess.h index 2051bd1f..ec3a6af4 100644 --- a/tcps_sess.h +++ b/tcps_sess.h @@ -46,7 +46,7 @@ struct tcps_sess_s { TCPFRAMINGMODE eFraming; uchar *pMsg; /* message (fragment) received */ prop_t *fromHost; /* host name we received messages from */ - uchar *fromHostIP; + prop_t *fromHostIP; void *pUsr; /* a user-pointer */ rsRetVal (*DoSubmitMessage)(tcps_sess_t*, uchar*, int); /* submit message callback */ }; |