|
@@ -328,10 +328,9 @@ public:
|
|
///
|
|
///
|
|
/// A call that is a no-op on UDP sockets, this opens a connection to the
|
|
/// A call that is a no-op on UDP sockets, this opens a connection to the
|
|
/// system identified by the given endpoint.
|
|
/// system identified by the given endpoint.
|
|
|
|
+ /// The endpoint and callback are unused.
|
|
///
|
|
///
|
|
- /// \param endpoint Unused
|
|
|
|
- /// \param callback Unused.
|
|
|
|
- ///false indicating that the operation completed synchronously.
|
|
|
|
|
|
+ /// \return false indicating that the operation completed synchronously.
|
|
virtual bool open(const IOEndpoint*, C&) {
|
|
virtual bool open(const IOEndpoint*, C&) {
|
|
return (false);
|
|
return (false);
|
|
}
|
|
}
|
|
@@ -339,23 +338,14 @@ public:
|
|
/// \brief Send Asynchronously
|
|
/// \brief Send Asynchronously
|
|
///
|
|
///
|
|
/// Must be supplied as it is abstract in the base class.
|
|
/// Must be supplied as it is abstract in the base class.
|
|
- ///
|
|
|
|
- /// \param data Unused
|
|
|
|
- /// \param length Unused
|
|
|
|
- /// \param endpoint Unused
|
|
|
|
- /// \param callback Unused
|
|
|
|
|
|
+ /// This is unused.
|
|
virtual void asyncSend(const void*, size_t, const IOEndpoint*, C&) {
|
|
virtual void asyncSend(const void*, size_t, const IOEndpoint*, C&) {
|
|
}
|
|
}
|
|
|
|
|
|
/// \brief Receive Asynchronously
|
|
/// \brief Receive Asynchronously
|
|
///
|
|
///
|
|
/// Must be supplied as it is abstract in the base class.
|
|
/// Must be supplied as it is abstract in the base class.
|
|
- ///
|
|
|
|
- /// \param data Unused
|
|
|
|
- /// \param length Unused
|
|
|
|
- /// \param offset Unused
|
|
|
|
- /// \param endpoint Unused
|
|
|
|
- /// \param callback Unused
|
|
|
|
|
|
+ /// The parameters are unused.
|
|
virtual void asyncReceive(void* data, size_t, size_t, IOEndpoint*, C&) {
|
|
virtual void asyncReceive(void* data, size_t, size_t, IOEndpoint*, C&) {
|
|
}
|
|
}
|
|
|
|
|