174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
*
* If the buffer is too small, the receive operation fails.
*
* @param buffer The buffer to write the packet to
* @param length The length of the buffer
* @return The length of the received packet
*/
- (size_t)receiveIntoBuffer: (void *)buffer
length: (size_t)length;
/**
* @brief Asynchronously receives a packet and stores it into the specified
* buffer.
*
* If the buffer is too small, the receive operation fails.
*
* @param buffer The buffer to write the packet to
* @param length The length of the buffer
*/
- (void)asyncReceiveIntoBuffer: (void *)buffer
length: (size_t)length;
/**
* @brief Asynchronously receives a packet and stores it into the specified
* buffer.
*
* If the buffer is too small, the receive operation fails.
*
|
|
<
|
<
|
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
|
*
* If the buffer is too small, the receive operation fails.
*
* @param buffer The buffer to write the packet to
* @param length The length of the buffer
* @return The length of the received packet
*/
- (size_t)receiveIntoBuffer: (void *)buffer length: (size_t)length;
/**
* @brief Asynchronously receives a packet and stores it into the specified
* buffer.
*
* If the buffer is too small, the receive operation fails.
*
* @param buffer The buffer to write the packet to
* @param length The length of the buffer
*/
- (void)asyncReceiveIntoBuffer: (void *)buffer length: (size_t)length;
/**
* @brief Asynchronously receives a packet and stores it into the specified
* buffer.
*
* If the buffer is too small, the receive operation fails.
*
|
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
/**
* @brief Sends the specified packet.
*
* @param buffer The buffer to send as a packet
* @param length The length of the buffer
*/
- (void)sendBuffer: (const void *)buffer
length: (size_t)length;
/**
* @brief Asynchronously sends the specified packet.
*
* @param data The data to send as a packet
*/
- (void)asyncSendData: (OFData *)data;
|
|
<
|
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
/**
* @brief Sends the specified packet.
*
* @param buffer The buffer to send as a packet
* @param length The length of the buffer
*/
- (void)sendBuffer: (const void *)buffer length: (size_t)length;
/**
* @brief Asynchronously sends the specified packet.
*
* @param data The data to send as a packet
*/
- (void)asyncSendData: (OFData *)data;
|