]> AND Public Git Repository - simgrid.git/blobdiff - src/mc/remote/Channel.hpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename C++ only header files from .h to .hpp.
[simgrid.git] / src / mc / remote / Channel.hpp
index f3e2ce9bbcd846deabbe5392740c89a6d9a2e404..c9de6d6ac9a45c78c35546fd4e564b25b1238040 100644 (file)
@@ -19,7 +19,7 @@ namespace mc {
 /** A channel for exchanging messages between model-checker and model-checked
  *
  *  This abstracts away the way the messages are transferred. Currently, they
- *  are sent over a (connected) `SOCK_DGRAM` socket.
+ *  are sent over a (connected) `SOCK_SEQPACKET` socket.
  */
 class Channel {
   int socket_ = -1;
@@ -29,7 +29,7 @@ class Channel {
   }
 
 public:
-  Channel() {}
+  Channel() = default;
   explicit Channel(int sock) : socket_(sock) {}
   ~Channel();