1 changed files with 23 additions and 0 deletions
@ -0,0 +1,23 @@
|
||||
#ifndef _TR_TORRENT_HPP_ |
||||
#define _TR_TORRENT_HPP_ |
||||
|
||||
#include <boost/system/error_code.hpp> |
||||
|
||||
namespace tr { |
||||
namespace ws { |
||||
template <class Connection, class Server> |
||||
void on_error(Server server, Connection con, const boost::system::error_code) { |
||||
} |
||||
template <class Connection, class Server> |
||||
void on_close(Server server, Connection con, int status, const std::string &reason) { |
||||
} |
||||
template <class Connection, class Server> |
||||
void on_open(Server server, Connection con) { |
||||
} |
||||
template <class Connection, class Server, class Message> |
||||
void on_message(Server server, Connection con, Message message) { |
||||
} |
||||
} |
||||
} |
||||
|
||||
#endif |
||||
Loading…
Reference in new issue