/* belle-sip - SIP (RFC3261) library. Copyright (C) 2010 Belledonne Communications SARL This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef BELLE_SIP_MESSAGE_H #define BELLE_SIP_MESSAGE_H #define BELLE_SIP_MESSAGE(obj) BELLE_SIP_CAST(obj,belle_sip_message_t) #define BELLE_SIP_REQUEST(obj) BELLE_SIP_CAST(obj,belle_sip_request_t) #define BELLE_SIP_RESPONSE(obj) BELLE_SIP_CAST(obj,belle_sip_response_t) BELLE_SIP_BEGIN_DECLS BELLESIP_EXPORT belle_sip_message_t* belle_sip_message_parse(const char* raw); /** * Parse sip message from a raw buffer * @param [in] buff buffer to be parsed * @param [in] buff_length size of the buffer to be parsed * @param [out] message_length number of bytes read * @return parsed message */ BELLESIP_EXPORT belle_sip_message_t* belle_sip_message_parse_raw (const char* buff, size_t buff_length,size_t* message_length ); BELLESIP_EXPORT int belle_sip_message_is_request(belle_sip_message_t *msg); BELLESIP_EXPORT belle_sip_request_t* belle_sip_request_new(); belle_sip_request_t* belle_sip_request_parse(const char* raw); BELLESIP_EXPORT belle_sip_request_t* belle_sip_request_create(belle_sip_uri_t *requri, const char* method, belle_sip_header_call_id_t *callid, belle_sip_header_cseq_t *cseq, belle_sip_header_from_t *from, belle_sip_header_to_t *to, belle_sip_header_via_t *via, int max_forwards); BELLESIP_EXPORT belle_sip_uri_t* belle_sip_request_get_uri(belle_sip_request_t* request); void belle_sip_request_set_uri(belle_sip_request_t* request, belle_sip_uri_t* uri); BELLESIP_EXPORT const char* belle_sip_request_get_method(const belle_sip_request_t* request); void belle_sip_request_set_method(belle_sip_request_t* request,const char* method); /** * Guess the origin of the received sip message from VIA header (thanks to received/rport) * @param req request to be analyzed * @ return a newly allocated uri * */ BELLESIP_EXPORT belle_sip_uri_t* belle_sip_request_extract_origin(const belle_sip_request_t* req); int belle_sip_message_is_response(const belle_sip_message_t *msg); BELLESIP_EXPORT belle_sip_header_t *belle_sip_message_get_header(const belle_sip_message_t *msg, const char *header_name); BELLESIP_EXPORT belle_sip_object_t *_belle_sip_message_get_header_by_type_id(const belle_sip_message_t *message, belle_sip_type_id_t id); #define belle_sip_message_get_header_by_type(msg,header_type)\ (header_type*)_belle_sip_message_get_header_by_type_id(BELLE_SIP_MESSAGE(msg),BELLE_SIP_TYPE_ID(header_type)) const belle_sip_list_t* belle_sip_message_get_headers(const belle_sip_message_t *message,const char* header_name); /** * Get list of all headers present in the message. * @param message * @return a newly allocated list of belle_sip_header_t * */ belle_sip_list_t* belle_sip_message_get_all_headers(const belle_sip_message_t *message); /** * add an header to this message * @param msg * @param header to add, must be one of header type */ BELLESIP_EXPORT void belle_sip_message_add_header(belle_sip_message_t *msg, belle_sip_header_t* header); void belle_sip_message_add_headers(belle_sip_message_t *message, const belle_sip_list_t *header_list); void belle_sip_message_set_header(belle_sip_message_t *msg, belle_sip_header_t* header); void belle_sip_message_remove_first(belle_sip_message_t *msg, const char *header_name); void belle_sip_message_remove_last(belle_sip_message_t *msg, const char *header_name); BELLESIP_EXPORT void belle_sip_message_remove_header(belle_sip_message_t *msg, const char *header_name); char *belle_sip_message_to_string(belle_sip_message_t *msg); const char* belle_sip_message_get_body(belle_sip_message_t *msg); BELLESIP_EXPORT void belle_sip_message_set_body(belle_sip_message_t *msg,const char* body,unsigned int size); /*message keep ownership of the null terminated body buffer void belle_sip_message_assign_body(belle_sip_message_t *msg,char* body);*/ BELLESIP_EXPORT int belle_sip_response_get_status_code(const belle_sip_response_t *response); void belle_sip_response_set_status_code(belle_sip_response_t *response,int status); BELLESIP_EXPORT const char* belle_sip_response_get_reason_phrase(const belle_sip_response_t *response); void belle_sip_response_set_reason_phrase(belle_sip_response_t *response,const char* reason_phrase); BELLESIP_EXPORT belle_sip_response_t *belle_sip_response_new(void); BELLESIP_EXPORT belle_sip_response_t *belle_sip_response_create_from_request(belle_sip_request_t *req, int status_code); /** * This method takes the received rport value of the reponse and update the contact IP/port accordingly * @param response use to extract received/rport from top most via. * @param contact contact to be updated * @returns 0 if no error * */ int belle_sip_response_fix_contact(const belle_sip_response_t* response,belle_sip_header_contact_t* contact); BELLE_SIP_END_DECLS #endif