Subversion Repositories HelenOS

Rev

Rev 3886 | Rev 3912 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3886 Rev 3901
Line 25... Line 25...
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup net
29
/** @addtogroup net
30
 * @{
30
 *  @{
31
 */
31
 */
32
 
32
 
33
/** @file
33
/** @file
34
 */
34
 */
35
 
35
 
36
#ifndef __NET_PACKET_H__
36
#ifndef __NET_PACKET_H__
37
#define __NET_PACKET_H__
37
#define __NET_PACKET_H__
38
 
38
 
39
#define PACKET_PREPEND( packet, type )      ( type * ) packet_prepend(( packet ), sizeof( type ))
-
 
40
#define PACKET_APPEND( packet, type )       ( type * ) packet_append(( packet ), sizeof( type ))
39
typedef unsigned int    packet_id_t;
41
#define PACKET_TRIM( packet, prefix, sufix )    packet_trim(( packet ), sizeof( prefix ), sizeof( sufix ))
-
 
42
 
40
 
43
typedef struct packet * packet_t;
41
typedef struct packet * packet_t;
44
typedef packet_t *  packet_ref;
42
typedef packet_t *  packet_ref;
45
 
43
 
46
packet_t    packet_create( size_t max_prefix, size_t max_content, size_t max_sufix );
-
 
47
void *      packet_prepend( packet_t packet, size_t length );
44
typedef enum packet_mode    packet_mode_t;
-
 
45
 
48
void *      packet_append( packet_t packet, size_t length );
46
enum    packet_mode{
-
 
47
    PM_ONEWAY,
-
 
48
    PM_RETURN
-
 
49
};
-
 
50
 
49
packet_t    packet_copy( packet_t packet );
51
packet_t pm_find( packet_id_t packet_id );
50
int     packet_copy_data( packet_t packet, void * data, size_t length );
52
int pm_add( packet_t packet );
51
// TODO protocol identification?
53
int pm_init( void );
52
int     packet_send( packet_t packet, int phone );
-
 
53
int     packet_receive( packet_ref packet );
54
void pm_destroy( void );
-
 
55
 
54
int     packet_trim( packet_t packet, size_t prefix, size_t sufix );
56
packet_t    pq_add( packet_t first, packet_t packet, int order, size_t metric );
55
int     packet_destroy( packet_t packet );
57
packet_t pq_detach( packet_t packet );
56
size_t      packet_get_data_length( packet_t packet );
58
int pq_set( packet_t packet, int order, size_t metric );
57
void *      packet_get_data( packet_t packet );
59
void    pq_destroy( packet_t first, void ( * packet_release )( packet_t packet ));
58
 
60
 
59
#endif
61
#endif
60
 
62
 
61
/** @}
63
/** @}
62
 */
64
 */