Update of /cvsroot/epp-rtk/epp-rtk/c++/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25650
Modified Files:
epp_ContactInfo.cc
Log Message:
Can now send authInfo with the <contact:info> request.
Index: epp_ContactInfo.cc
===================================================================
RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/epp_ContactInfo.cc,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** epp_ContactInfo.cc 18 Jul 2003 20:21:19 -0000 1.18
--- epp_ContactInfo.cc 11 Oct 2005 11:32:51 -0000 1.19
***************
*** 72,75 ****
--- 72,79 ----
xml_request.putTag("contact:id",*m_request->m_id);
+ if(m_request->m_auth_info != NULL) {
+ addAuthInfoElement(xml_request, m_request->m_auth_info, "contact:authInfo");
+ }
+
xml_request.endTag("contact:info");
xml_request.endTag("info");
|