Skip to content

Instantly share code, notes, and snippets.

@Azerothian
Created August 31, 2015 01:29
Show Gist options
  • Save Azerothian/6688d2f0caa8fcf4c53a to your computer and use it in GitHub Desktop.
Save Azerothian/6688d2f0caa8fcf4c53a to your computer and use it in GitHub Desktop.
char *at = strchr(ifName, '@');
char *topic = (char*)"flow", *endpoint;
if(at != NULL)
endpoint = &at[1];
else
endpoint = ifName;
iface = new CollectorInterface(endpoint, topic);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment