broker integration: add knobs to set auto publish/advertise behavior

This commit is contained in:
Jon Siwek 2015-02-09 16:18:46 -06:00
parent cfb666af2b
commit ebc9407a2b
4 changed files with 48 additions and 5 deletions

View file

@ -5,6 +5,11 @@ export {
const endpoint_name = "" &redef;
type EndpointFlags: record {
auto_publish: bool &default = T;
auto_advertise: bool &default = T;
};
type SendFlags: record {
self: bool &default = F;
peers: bool &default = T;