summaryrefslogtreecommitdiff
path: root/pjmedia/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-03-08 10:05:19 +0000
committerBenny Prijono <bennylp@teluu.com>2006-03-08 10:05:19 +0000
commit21d3fdbca30845ee7f78dc4f641c03747b9cd1c0 (patch)
tree0c2cc2d5ae955be6f50400047e79c4ac2280d7c8 /pjmedia/include
parentcd530283c13580e0ca8115004cd809ba9006b3b1 (diff)
RTP server NAT support and removed rtp_port
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@311 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/include')
-rw-r--r--pjmedia/include/pjmedia/rtp_port.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/pjmedia/include/pjmedia/rtp_port.h b/pjmedia/include/pjmedia/rtp_port.h
deleted file mode 100644
index 7bb93cb2..00000000
--- a/pjmedia/include/pjmedia/rtp_port.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* $Id$ */
-/*
- * Copyright (C) 2003-2006 Benny Prijono <benny@prijono.org>
- *
- * 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 2 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-#ifndef __PJMEDIA_RTP_PORT_H__
-#define __PJMEDIA_RTP_PORT_H__
-
-
-/**
- * @file rtp_port.h
- * @brief RTP media port.
- */
-#include <pjmedia/port.h>
-
-
-PJ_BEGIN_DECL
-
-
-/**
- * Create RTP port.
- */
-PJ_DECL(pj_status_t) pjmedia_rtp_port_create(pj_pool_t *pool,
- pjmedia_sock_info *sock_info,
- pjmedia_port **p_port);
-
-
-/**
- * Set RTP destination info.
- */
-PJ_DECL(pj_status_t) pjmedia_rtp_port_configure(pjmedia_port *rtp,
- const pj_sockaddr_in *rem_rtp,
- const pj_sockaddr_in *rem_rtcp);
-
-
-
-PJ_END_DECL
-
-
-#endif /* __PJMEDIA_RTP_PORT_H__ */