diff options
author | Lutz Bichler <Lutz.Bichler@bmw.de> | 2014-08-04 16:19:33 +0200 |
---|---|---|
committer | Lutz Bichler <Lutz.Bichler@bmw.de> | 2014-08-04 16:19:33 +0200 |
commit | d3644b3edc8b15ace244724bc50e4fbfbf9601ec (patch) | |
tree | d050b187022414c188fac9ea8bfdeb22007996e5 /implementation/endpoints/include/client_endpoint_impl.hpp | |
parent | deebe9fbce59a421f85635a01cbaf8b66b742665 (diff) | |
download | vSomeIP-d3644b3edc8b15ace244724bc50e4fbfbf9601ec.tar.gz |
Implemented notification events (tested over IP / untested internally).
Diffstat (limited to 'implementation/endpoints/include/client_endpoint_impl.hpp')
-rw-r--r-- | implementation/endpoints/include/client_endpoint_impl.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/implementation/endpoints/include/client_endpoint_impl.hpp b/implementation/endpoints/include/client_endpoint_impl.hpp index f88ea93..7e460b6 100644 --- a/implementation/endpoints/include/client_endpoint_impl.hpp +++ b/implementation/endpoints/include/client_endpoint_impl.hpp @@ -38,7 +38,7 @@ public: virtual ~client_endpoint_impl();
bool send(const uint8_t *_data, uint32_t _size, bool _flush);
- bool send_to(const boost::asio::ip::address &_address, uint16_t _port,
+ bool send_to(const std::shared_ptr<endpoint_definition> _target,
const byte_t *_data, uint32_t _size, bool _flush = true);
bool flush();
|