00001 /* 00002 * $Id: registration.h 477 2007-11-02 20:15:53Z vingarzan $ 00003 * 00004 * Copyright (C) 2004-2006 FhG Fokus 00005 * 00006 * This file is part of Open IMS Core - an open source IMS CSCFs & HSS 00007 * implementation 00008 * 00009 * Open IMS Core is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * For a license to use the Open IMS Core software under conditions 00015 * other than those described here, or to purchase support for this 00016 * software, please contact Fraunhofer FOKUS by e-mail at the following 00017 * addresses: 00018 * info@open-ims.org 00019 * 00020 * Open IMS Core is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * It has to be noted that this Open Source IMS Core System is not 00026 * intended to become or act as a product in a commercial context! Its 00027 * sole purpose is to provide an IMS core reference implementation for 00028 * IMS technology testing and IMS application prototyping for research 00029 * purposes, typically performed in IMS test-beds. 00030 * 00031 * Users of the Open Source IMS Core System have to be aware that IMS 00032 * technology may be subject of patents and licence terms, as being 00033 * specified within the various IMS-related IETF, ITU-T, ETSI, and 3GPP 00034 * standards. Thus all Open IMS Core users have to take notice of this 00035 * fact and have to agree to check out carefully before installing, 00036 * using and extending the Open Source IMS Core System, if related 00037 * patents and licences may become applicable to the intended usage 00038 * context. 00039 * 00040 * You should have received a copy of the GNU General Public License 00041 * along with this program; if not, write to the Free Software 00042 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00043 * 00044 */ 00045 00058 #ifndef P_CSCF_REGISTRATION_H 00059 #define P_CSCF_REGISTRATION_H 00060 00061 #include "../../sr_module.h" 00062 00064 #define MSG_200_OK_NOTIFY "OK Notification received by P-CSCF" 00065 00066 int P_add_path(struct sip_msg *msg,char *str1,char*str2); 00067 00068 int P_add_require(struct sip_msg *msg,char *str1,char*str2); 00069 00070 int P_add_p_charging_vector(struct sip_msg *msg,char *str1,char*str2); 00071 00072 int P_add_integrity_protected(struct sip_msg *msg,char *str1,char*str2); 00073 00074 int P_add_p_visited_network_id(struct sip_msg *msg,char *str1,char*str2); 00075 00076 int P_remove_ck_ik(struct sip_msg *msg,char *str1,char*str2); 00077 00078 int P_is_integrity_protected(struct sip_msg *msg,char *str1,char *str2); 00079 00080 int P_is_registered(struct sip_msg *msg,char *str1,char *str2); 00081 00082 int P_assert_identity(struct sip_msg *msg,char *str1,char *str2); 00083 00084 int P_assert_called_identity(struct sip_msg *msg,char *str1,char *str2); 00085 00086 int P_process_notification(struct sip_msg *msg,char *str1,char *str2); 00087 00088 int P_mobile_terminating(struct sip_msg *msg,char *str1,char *str2); 00089 00090 int P_remove_route(struct sip_msg *msg,char *str1,char *str2); 00091 00092 int P_NAT_relay(struct sip_msg *msg,char *str1,char *str2); 00093 00094 int P_security_relay(struct sip_msg *msg,char *str1,char *str2); 00095 00096 int P_follows_service_routes(struct sip_msg *msg,char *str1,char *str2); 00097 00098 int P_enforce_service_routes(struct sip_msg *msg,char *str1,char*str2); 00099 00100 int P_access_network_info(struct sip_msg *req,char *str1,char *str2); 00101 00102 #endif /* P_CSCF_REGISTRATION_H */
1.5.2