#include <assert.h>
#include "config.h"
#include "liblogging.h"
#include "sockets.h"
#include "beepsession.h"
#include "beepchannel.h"
#include "beepframe.h"
#include "namevaluetree.h"
#include "stringbuf.h"
Functions | |
sbChanObj * | sbSessRetrChanObj (sbSessObj *pThis, SBchannel uChanNo) |
Retrieve the channel object associated with the channel number. | |
srRetVal | sbSessProcessGreeting (sbSessObj *pThis, sbMesgObj *pMesg) |
sbSessObj * | sbSessOpenSession (char *pszRemotePeer, int iPort, sbNVTRObj *pProfSupported) |
srRetVal | sbSessDoSEQ (sbSessObj *pThis, sbFramObj *pFram) |
Process the supplied SEQ frame. | |
void | sbSessDestroy (sbSessObj *pThis) |
Destructor. | |
srRetVal | sbSessDoReceive (sbSessObj *pThis, int bMustRcvPayloadFrame) |
Receive frames off the tcp stream. | |
sbFramObj * | sbSessRecvFram (sbSessObj *pThis, sbChanObj *pChan) |
srRetVal | sbSessSendFram (sbSessObj *pThis, sbFramObj *pFram, sbChanObj *pChan) |
sbChanObj * | sbSessOpenChan (sbSessObj *pThis) |
Open a BEEP channel on an established session. | |
srRetVal | sbSessCloseChan (sbSessObj *pThis, sbChanObj *pChan) |
srRetVal | sbSessCloseSession (sbSessObj *pThis) |
Closes the BEEP session. | |
srRetVal | sbSessSendGreeting (sbSessObj *pSess, sbNVTRObj *pProfsSupported) |
2003-08-11 Integrated XML parser in closeSession and other areas (begun implementing it).
2003-08-12 Added a list of remote peers profile to the session object. Now the sbSessOpenChan() can do intelligent checking if the remote peer supports the profile (and, if not, provide an error message and not try to connect).
2003-09-04 Added support for multiple initiator (client) profiles.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the names of Adiscon GmbH nor Rainer Gerhards nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
Closes the BEEP session. First, the management channel (channel 0) is taken down and then the TCP stream is closed. This function can only be called after all sessions have been closed. Once the function returns, the session object is no longer valid and can no longer be used. |
|
Destructor. pThis is invalid when this function returns. The caller can no longer use it. The caller is also not allowed to free it - this is already done in this method. |
|
Receive frames off the tcp stream. SEQ frames are processed as they arrive. Other frames are buffered in the respective in-memory queue. This is a helper to sbSessRecvFram() and sbSessSendFram().
|
|
Process the supplied SEQ frame. Most notably, this means the window is updated in the respective channel object. According to the latest discussion on the BEEP WG mailing list and other sources, we silently ignore SEQ frames for non-existing channels. This most probably is not a protocol error but rather a SEQ frame arriving after the channel has been closed. This can happen due to TCP delays. Other implementors have suggested (and successfully implemented) ignoring these frames. This information is current as of August, 2003.
|
|
Open a BEEP channel on an established session.
|
|
|
|
Retrieve the channel object associated with the channel number. This method allows to retrieve a channel number based on the actual channel.
|