summaryrefslogtreecommitdiffstats
path: root/runtime/netstrm.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-04-24 09:57:43 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-04-24 09:57:43 +0200
commitbf3d2c1b392af1383a3cdc247f2280fd31a12699 (patch)
tree532f3de6ec3b7fc7557c4e3a60f142a07a29580a /runtime/netstrm.h
parent721b9ee252143d182c3c145380e5dbec8c3b0102 (diff)
downloadrsyslog-bf3d2c1b392af1383a3cdc247f2280fd31a12699.tar.gz
rsyslog-bf3d2c1b392af1383a3cdc247f2280fd31a12699.tar.xz
rsyslog-bf3d2c1b392af1383a3cdc247f2280fd31a12699.zip
message reception via TCP work again
... at least in some cases ;) I assume there are still a couple of bugs inside the code. But at least we have something from where we can continue to work on.
Diffstat (limited to 'runtime/netstrm.h')
-rw-r--r--runtime/netstrm.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/runtime/netstrm.h b/runtime/netstrm.h
index 33d166ea..f4205f80 100644
--- a/runtime/netstrm.h
+++ b/runtime/netstrm.h
@@ -32,13 +32,7 @@ struct netstrm_s {
nsd_t *pDrvrData; /**< the driver's data elements (at most other places, this is called pNsd) */
uchar *pDrvrName; /**< nsd driver name to use, or NULL if system default */
nsd_if_t Drvr; /**< our stream driver */
- netstrms_t *pNS; /**< pointer to our netstream subsystem object */
- /* for listeners, we need to have the capablity to listen on multiple "sockets". This
- * is needed to support IPv6. We do this by specifying an array of nsd_t objects to
- * handle this case.
- */
- //int isizeLstnArr;
- //nsd_t **parrLstn;
+ netstrms_t *pNS; /**< pointer to our netstream subsystem object */
};
@@ -54,11 +48,13 @@ BEGINinterface(netstrm) /* name must also be changed in ENDinterface macro! */
rsRetVal (*Rcv)(netstrm_t *pThis, uchar *pRcvBuf, ssize_t *pLenBuf);
rsRetVal (*Send)(netstrm_t *pThis, uchar *pBuf, ssize_t *pLenBuf);
rsRetVal (*Connect)(netstrm_t *pThis, int family, unsigned char *port, unsigned char *host);
- rsRetVal (*SelectInit)(nsdsel_t **ppSel, netstrm_t *pThis);
- rsRetVal (*SelectAdd)(nsdsel_t *pSel, netstrm_t *pThis);
- rsRetVal (*SelectWait)(nsdsel_t *pSel, int *piNumReady);
- rsRetVal (*SelectIsReady)(nsdsel_t *pSel, int *piNumReady);
- rsRetVal (*SelectExit)(nsdsel_t **ppSel);
+ //rsRetVal (*SelectInit)(nsdsel_t **ppSel, netstrm_t *pThis);
+ //rsRetVal (*SelectAdd)(nsdsel_t *pSel, netstrm_t *pThis);
+ //rsRetVal (*SelectWait)(nsdsel_t *pSel, int *piNumReady);
+ //rsRetVal (*SelectIsReady)(nsdsel_t *pSel, int *piNumReady);
+ //rsRetVal (*SelectExit)(nsdsel_t **ppSel);
+ rsRetVal (*GetRemoteHName)(netstrm_t *pThis, uchar **pszName);
+ rsRetVal (*GetRemoteIP)(netstrm_t *pThis, uchar **pszIP);
ENDinterface(netstrm)
#define netstrmCURR_IF_VERSION 1 /* increment whenever you change the interface structure! */