Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. std::map<std::string, SubscriptionInfo> sub_list;
  2.  
  3. struct ServerInfo {
  4. u_int32_t ip;
  5. u_int16_t port;
  6. };
  7.  
  8. struct SubscriptionInfo {
  9. u_int64_t subscriptionId;
  10. int no_of_servers;
  11. ServerInfo *remote;
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement