test_readme.cpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * The MIT License (MIT)
  3. *
  4. * Copyright (c) 2014 Achille Roussel <achille.roussel@gmail.com>
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  22. * SOFTWARE.
  23. */
  24. #include <iostream>
  25. #include <system_error>
  26. #include <nnxx/message>
  27. #include <nnxx/socket>
  28. int main() {
  29. try {
  30. nnxx::socket s1 { nnxx::SP, nnxx::PAIR };
  31. nnxx::socket s2 { nnxx::SP, nnxx::PAIR };
  32. const char *addr = "inproc://example";
  33. s1.bind(addr);
  34. s2.connect(addr);
  35. s1.send("Hello World!");
  36. nnxx::message msg = s2.recv();
  37. std::cout << msg << std::endl;
  38. return 0;
  39. }
  40. catch (const std::system_error &e) {
  41. std::cerr << e.what() << std::endl;
  42. return 1;
  43. }
  44. }