summaryrefslogtreecommitdiffstats
path: root/src/packet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/packet.h')
-rw-r--r--src/packet.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/packet.h b/src/packet.h
index 7e2e0066..b6024dd0 100644
--- a/src/packet.h
+++ b/src/packet.h
@@ -4,17 +4,17 @@
#include <sys/types.h>
#include <stdint.h>
-struct packet {
- enum { PACKET_APPENDED, PACKET_DYNAMIC } type;
+struct pa_packet {
+ enum { PA_PACKET_APPENDED, PA_PACKET_DYNAMIC } type;
unsigned ref;
size_t length;
uint8_t *data;
};
-struct packet* packet_new(size_t length);
-struct packet* packet_new_dynamic(uint8_t* data, size_t length);
+struct pa_packet* pa_packet_new(size_t length);
+struct pa_packet* pa_packet_new_dynamic(uint8_t* data, size_t length);
-struct packet* packet_ref(struct packet *p);
-void packet_unref(struct packet *p);
+struct pa_packet* pa_packet_ref(struct pa_packet *p);
+void pa_packet_unref(struct pa_packet *p);
#endif