summaryrefslogtreecommitdiffstats
path: root/src/raw1394_private.h
blob: fed60c96af313f638feb6b26a554469b3f72f732 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef _RAW1394_PRIVATE_H
#define _RAW1394_PRIVATE_H

struct raw1394_handle {
        int fd;
        unsigned int generation;

        nodeid_t local_id;
        int num_of_nodes;

        bus_reset_handler_t bus_reset_handler;
        tag_handler_t tag_handler;
        fcp_handler_t fcp_handler;
        iso_handler_t iso_handler[64];

        struct raw1394_request req;
        quadlet_t buffer[2048];

        void *userdata;
};

struct sync_cb_data {
        int done;
        int errcode;
};

int _raw1394_sync_cb(struct raw1394_handle*, struct sync_cb_data*, int);

#define HBUF_SIZE 8192
#define CLEAR_REQ(reqp) memset((reqp), 0, sizeof(struct raw1394_request))

#endif /* _RAW1394_PRIVATE_H */