Just updated doxygen documentation

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@690 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/pjsip/docs/doxygen.cfg b/pjsip/docs/doxygen.cfg
index 59d6e65..9de6aa8 100644
--- a/pjsip/docs/doxygen.cfg
+++ b/pjsip/docs/doxygen.cfg
@@ -17,7 +17,7 @@
 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 

 # by quotes) that should identify the project.

 

-PROJECT_NAME           =  PJSIP

+PROJECT_NAME           =  "PJSIP Reference"

 

 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 

 # This could be handy for archiving the generated documentation or 

diff --git a/pjsip/docs/footer.html b/pjsip/docs/footer.html
index 7e7b552..cafc0b6 100644
--- a/pjsip/docs/footer.html
+++ b/pjsip/docs/footer.html
@@ -1,4 +1,9 @@
-	<!--#include virtual="/footer.html" -->

+<p>&nbsp;</p>

+<hr><center>

+PJSIP Open Source, high performance, small footprint, and very very portable SIP stack<br>

+(C)2003-2006 Benny Prijono

+</center>

+<!--#include virtual="/footer.html" -->

 

 </BODY>

 </HTML>

diff --git a/pjsip/docs/header.html b/pjsip/docs/header.html
index 9faaf8d..767dbaa 100644
--- a/pjsip/docs/header.html
+++ b/pjsip/docs/header.html
@@ -1,7 +1,8 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">

-<title>PJSIP - Open Source SIP, SIMPLE, Presence, IM Protocol Stack Documentation</title>

+<title>$title</title>

 <link href="/style/style.css" rel="stylesheet" type="text/css">

 </head><body>

 	<!--#include virtual="/header.html" -->

+	<p><A HREF="/">Home</A> --&gt; <A HREF="/docs.htm">Documentations</A> --&gt; PJSIP Reference</p>

 

diff --git a/pjsip/include/pjsua-lib/pjsua.h b/pjsip/include/pjsua-lib/pjsua.h
index 2ffea4c..d2ca7a3 100644
--- a/pjsip/include/pjsua-lib/pjsua.h
+++ b/pjsip/include/pjsua-lib/pjsua.h
@@ -617,6 +617,15 @@
  */
 PJ_DECL(pjmedia_endpt*) pjsua_get_pjmedia_endpt(void);
 
+/**
+ * Internal function to get PJSUA pool factory.
+ * Only valid after #pjsua_init() is called.
+ *
+ * @return		Pool factory currently used by PJSUA.
+ */
+PJ_DECL(pj_pool_factory*) pjsua_get_pool_factory(void);
+
+
 
 /*****************************************************************************
  * Utilities.
diff --git a/pjsip/src/pjsua-lib/pjsua_core.c b/pjsip/src/pjsua-lib/pjsua_core.c
index a0a87fb..ea4b063 100644
--- a/pjsip/src/pjsua-lib/pjsua_core.c
+++ b/pjsip/src/pjsua-lib/pjsua_core.c
@@ -746,6 +746,13 @@
     return pjsua_var.med_endpt;
 }
 
+/*
+ * Internal function to get PJSUA pool factory.
+ */
+PJ_DEF(pj_pool_factory*) pjsua_get_pool_factory(void)
+{
+    return &pjsua_var.cp.factory;
+}
 
 /*****************************************************************************
  * PJSUA SIP Transport API.