/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdlib.h>
#include <assert.h>
#include <errno.h>
#include <strings.h>
#include <pthread.h>
#include <sip.h>
#include "sip_msg.h"
#include "sip_miscdefs.h"
#include "sip_xaction.h"
/*
* Hold transaction
*/
void
{
return;
}
/*
* Release transaction
*/
void
{
return;
}
/*
* responsible for doing a sip_release_trans().
*/
const struct sip_xaction *
{
*error = 0;
return (NULL);
}
}
/*
* Get the last response sent for this transaction
*/
const struct sip_message *
{
*error = 0;
return (NULL);
}
error)) {
return (_trans->sip_xaction_last_msg);
} else if (!sip_msg_is_request((sip_msg_t)
return (_trans->sip_xaction_orig_msg);
}
return (NULL);
}
/*
* Get the SIP message that created this transaction
*/
const struct sip_message *
{
*error = 0;
return (NULL);
}
}
/*
* Get the connection object that was used to send the last message for this
* transaction.
*/
const struct sip_conn_object *
{
*error = 0;
return (NULL);
}
}
/*
* Get the transaction method
*/
{
*error = 0;
return (-1);
}
}
/*
* Get the transaction id. Caller frees string
*/
char *
{
char *bid;
*error = 0;
return (NULL);
}
return (NULL);
}
return (bid);
}
/*
* Get the transaction state
*/
int
{
*error = 0;
return (NULL);
}
return (xaction->sip_xaction_state);
}