You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
601 B
23 lines
601 B
#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 |