Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
svn
ddnssync
Commits
fe45851f
Commit
fe45851f
authored
Sep 14, 2007
by
mr-ti
Browse files
No commit message
No commit message
parent
d91cffcf
Changes
2
Hide whitespace changes
Inline
Side-by-side
ddnssbase/ddnsshttpcl.cpp
0 → 100644
View file @
fe45851f
//
// C++ Implementation: ddnsshttpcl
//
// Description:
//
//
// Author: Emeric VERSCHUUR <contact@mr-ti.com>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "ddnsshttpcl.h"
DdnssHttpCl
::
DdnssHttpCl
()
:
CUniMutex
()
{
publicIpGetAdress
=
"http://checkip.dyndns.org/"
;
}
DdnssHttpCl
::~
DdnssHttpCl
()
{}
ddnssbase/ddnsshttpcl.h
0 → 100644
View file @
fe45851f
//
// C++ Interface: ddnsshttpcl
//
// Description:
//
//
// Author: Emeric VERSCHUUR <contact@mr-ti.com>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef DDNSSHTTPCL_H
#define DDNSSHTTPCL_H
#include <unicomctrl/cunimutex.h>
class
DdnssHttpCl
:
public
CUniMutex
{
public:
DdnssHttpCl
();
~
DdnssHttpCl
();
string
getPublicIp
();
private:
string
publicIpGetAdress
;
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment