summaryrefslogtreecommitdiffstats
path: root/src/lib/config (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [3518] Compilation fix: couple missing dependencies in librariesTomek Mrugalski2014-08-131-0/+1
|
* [3507] Renamed B10_CXXFLAGS to KEA_CXXFLAGS.Marcin Siodelski2014-08-121-1/+1
|
* [3417] B10 => KEA renamedTomek Mrugalski2014-08-062-33/+33
|
* [3417] "bind 10" => Kea converted in many .cc/.h filesTomek Mrugalski2014-08-064-13/+17
|
* [3416] Remove all mention of BIND 10 from message filesStephen Morris2014-07-221-3/+3
|
* [3413] BIND10 framework removal, part 1Tomek Mrugalski2014-06-021-21/+0
|
* [3394] Renamed Kea libraries from libb10-something to libkea-something.Marcin Siodelski2014-04-152-13/+13
|
* Merge branch 'trac2904_v3'Kean Johnston2014-01-252-2/+2
|\
| * [2904] Change test port from 4780XX to 5617XXKean Johnston2014-01-122-2/+2
| | | | | | | | | | | | Apple has a service that (in IPv4) listens on port 47807. This causes conflicts with the test suite on that platform. Use ports higher up in the RFC6335 dynamic ports range (5617XX).
* | [2945]Merge branch 'master' into trac2945Jeremy C. Reed2014-01-217-8/+376
|\ \ | | | | | | | | | fix merge conflicts
| * | Update .gitignore filesMukund Sivaraman2014-01-201-0/+1
| |/
| * Merge #2932Michal 'vorner' Vaner2013-10-293-0/+198
| |\ | | | | | | | | | Receiving of notifications in C++.
| | * [2932] Document the notification interfaceMichal 'vorner' Vaner2013-09-061-0/+38
| | |
| | * [2932] Handle the notificationsMichal 'vorner' Vaner2013-09-063-12/+56
| | | | | | | | | | | | | | | Detect incoming notifications and handle them according to the subscriptions.
| | * [2932] Subscribe and unsubscribe notificationsMichal 'vorner' Vaner2013-09-052-0/+39
| | | | | | | | | | | | Doesn't actually use this for anything yet.
| | * [2932] Tests for the notification reception in C++Michal 'vorner' Vaner2013-09-051-0/+64
| | |
| | * [2932] Interface to subscribe and unsubscribe notificationsMichal 'vorner' Vaner2013-09-051-0/+13
| | | | | | | | | | | | Not documented as of yet, and no implementation.
| * | [3073] Add empty() member function to Element for element lists.Kean Johnston2013-10-102-5/+5
| | | | | | | | | | | | | | | | | | It has been asserted that using empty() is more efficient than using size() > 0 due to the possible extra work size() has to do. So provide an empty() function, which matches the underlying Boost implementation.
| * | [3170] fix rulkes that were breaking parallel buildsKean Johnston2013-09-181-2/+5
| |/
| * [2862] Hack in a way to receive foreign commandsMichal 'vorner' Vaner2013-07-123-0/+60
| | | | | | | | | | | | Provide a callback to receive commands for foreign modules. The current implementation is somewhat broken and unsatisfactory, but let's leave that up for later. We need a way now.
| * [2862] Subscribe and unsubscribe on MCCSMichal 'vorner' Vaner2013-07-122-0/+25
| |
| * [2726] Pass plain old C stringMichal 'vorner' Vaner2013-06-171-1/+1
| | | | | | | | | | | | | | | | This should prevent cppcheck from complaining on several places about passing c_str() as string argument. It is not possible to remove the c_str() from the macro, as it might be needed at other places. Putting the suppression at several places seems wrong, so this is the least ugly solution.
| * [2930] Replace example for a more obvious oneMichal 'vorner' Vaner2013-05-231-3/+4
| |
| * [2930] Adjust terminology in docsMichal 'vorner' Vaner2013-05-231-3/+3
| | | | | | | | So it is the same as in the ipc-high.txt.
| * [2930] Add test for missing parametersMichal 'vorner' Vaner2013-05-221-0/+18
| |
| * [2930] Doxygen updateMichal 'vorner' Vaner2013-05-221-1/+8
| | | | | | | | Clarify few points in the method's doxygen comment.
| * [2930] style fix: postion of &JINMEI Tatuya2013-05-221-2/+2
| |
| * [2930] Use a constantMichal 'vorner' Vaner2013-05-211-1/+1
| |
| * [2930] Sending notifications, C++ versionMichal 'vorner' Vaner2013-05-212-0/+38
| |
| * [2937] Interface of the notify methodMichal 'vorner' Vaner2013-05-201-0/+17
| |
* | [2945] Update Doxygen reference to isc::ConfigData::getFullConfig()Mukund Sivaraman2013-11-131-2/+2
|/
* [master] many spelling or typo fixesJeremy C. Reed2013-04-092-3/+3
| | | | | | | | mostly in documentation or in comments reviewed by muks via jabber includes output changes for two isc_throw.
* [2562] (unrelated) added notes that rpcCall wouldn't work until #2804 is fixed.JINMEI Tatuya2013-03-271-11/+15
| | | | | so others won't waste their time by trying to use it... same note applies to groupRecvMsg, so added the same note.
* [2737] Use the correct constantMichal 'vorner' Vaner2013-03-191-1/+1
|
* [2737] Use protocol constants in isc::config::ModuleConfigSessionMichal 'vorner' Vaner2013-03-192-22/+27
|
* Merge #2768Michal 'vorner' Vaner2013-03-116-7/+164
|\ | | | | | | The rpcCall method in C++
| * [2768] Remove some more referencesMichal 'vorner' Vaner2013-03-112-11/+13
| | | | | | | | | | They save only little bit of work to the CPU and are suspicious to casual reader, even when they should be safe in theory.
| * [2768] Don't use const referenceMichal 'vorner' Vaner2013-03-071-1/+1
| | | | | | | | | | It should be allowed by C++ standard (and the object be alive before the function is left), but this is just to be sure.
| * [2768] (minor) Style tweaksMichal 'vorner' Vaner2013-03-061-1/+2
| |
| * [2768] Make sure the rpcCall asks for answerMichal 'vorner' Vaner2013-02-226-10/+22
| | | | | | | | | | Add tests for the fact and fix it. Also, add log from the rpcCall itself, so it can be seen in logs.
| * [2768] Implement the rpcCall methodMichal 'vorner' Vaner2013-02-201-4/+16
| |
| * [2768] Tests for the rpcCall methodMichal 'vorner' Vaner2013-02-203-0/+73
| | | | | | | | | | They currently fail, as the method is empty. Provide at least an empty implementation, to make it compile.
| * [2768] Interface of the ModuleCCSession::rpcCallMichal 'vorner' Vaner2013-02-181-0/+57
| |
* | [master] various more typo and misspelling fixesJeremy C. Reed2013-03-081-1/+1
| | | | | | | | | | | | | | | | Some slight grammar changes. Mostly in comments, but some for api docs. Changes a isc_throw output too. Reviewed via jabber.
* | [master] many misspelling and typo fixesJeremy C. Reed2013-03-062-3/+3
|/ | | | | | | reviewed by jelte via jabber. Changes some log message descriptions and some function arguments and some output.
* use explicit operator precedence; reviewed via jabberMark Andrews2013-02-151-2/+2
|
* Merge #1924Michal 'vorner' Vaner2013-02-132-2/+3
|\ | | | | | | | | | | | | | | | | | | | | | | Provide a "message undeliverable" error by the msgq daemon in case the sender declares it expects an answer and there's no recipient to send it to. Conflicts: src/bin/bindctl/run_bindctl.sh.in src/bin/sysinfo/run_sysinfo.sh.in src/lib/python/isc/cc/Makefile.am src/lib/python/isc/cc/session.py
| * [1924] Update mocks with the new parameterMichal 'vorner' Vaner2013-01-312-2/+3
| |
* | [trac2665] fixed two unchecked return codes in ↵Curtis Blackburn2013-01-311-0/+2
|/ | | | src/lib/config/tests/ccsession_unittests.cc
* [2619] Make getFullConfig() not 'flatten' the dataJelte Jansen2013-01-103-11/+14
| | | | | Rather, it does a getValue on all top-level elements and puts them in the map to return This changes behaviour slightly, but it should reflect the actual use better than the old ones (even in existing cases)