2 * Copyright 2009, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
6 * Michael Lotz <mmlr@mlotz.ch>
12 #include <SupportDefs.h>
15 class StreamingRingBuffer
;
19 NetSender(BNetEndpoint
*endpoint
,
20 StreamingRingBuffer
*source
);
24 static int32
_NetworkSenderEntry(void *data
);
25 status_t
_NetworkSender();
27 BNetEndpoint
* fEndpoint
;
28 StreamingRingBuffer
* fSource
;
30 thread_id fSenderThread
;
34 #endif // NET_SENDER_H