diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-03 12:53:46 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-03 12:53:46 -0400 |
| commit | bf5c07f79a0f78e714fe47a5d1e09330022261ea (patch) | |
| tree | 99b41a9e4f006a2ae742fb1d6eb66e0be2a19742 /netconf-service | |
| parent | 63fa4a684d15409e185422e7641e7c4680d19ec3 (diff) | |
| download | infinitytier-bf5c07f79a0f78e714fe47a5d1e09330022261ea.tar.gz infinitytier-bf5c07f79a0f78e714fe47a5d1e09330022261ea.zip | |
Scratch that... more work wiring up netconf. Got to handle OK.
Diffstat (limited to 'netconf-service')
| -rw-r--r-- | netconf-service/netconf.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/netconf-service/netconf.cpp b/netconf-service/netconf.cpp index af6ed4e6..07e0b76d 100644 --- a/netconf-service/netconf.cpp +++ b/netconf-service/netconf.cpp @@ -243,6 +243,8 @@ int main(int argc,char **argv) sprintf(buf,"%.16llx",(unsigned long long)nwid); netconf["nwid"] = buf; netconf["isOpen"] = (isOpen ? "1" : "0"); + sprintf(buf,"%llx",(unsigned long long)Utils::now()); + netconf["ts"] = buf; if (!isOpen) { // TODO: handle closed networks, look up private membership, |
