aboutsummaryrefslogtreecommitdiffstats
path: root/gtp/queue.h
diff options
context:
space:
mode:
authorjjako <jjako>2004-09-17 11:30:40 +0000
committerjjako <jjako>2004-09-17 11:30:40 +0000
commit0fe0df0079873a7c1cdad3ddcea116267e1379d2 (patch)
treecce712b3dfcdffef34c33f62d50fc2e7ff756de2 /gtp/queue.h
parent12f9e6e26325db3d18c43517dc1f486a3f1da42d (diff)
qos length bugfix and apple support plus header cleanup
Diffstat (limited to 'gtp/queue.h')
-rw-r--r--gtp/queue.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/gtp/queue.h b/gtp/queue.h
index 1e95676..46fa22d 100644
--- a/gtp/queue.h
+++ b/gtp/queue.h
@@ -7,11 +7,6 @@
* notice and this permission notice is included in all copies or
* substantial portions of the software.
*
- * The initial developer of the original code is
- * Jens Jakobsen <jj@openggsn.org>
- *
- * Contributor(s):
- *
*/
/*
@@ -22,15 +17,15 @@
#ifndef _QUEUE_H
#define _QUEUE_H
-#define QUEUE_DEBUG 0 /* Print debug information */
+#define QUEUE_DEBUG 0 /* Print debug information */
-#define QUEUE_SIZE 1024 /* Size of retransmission queue */
+#define QUEUE_SIZE 1024 /* Size of retransmission queue */
#define QUEUE_HASH_SIZE 65536 /* Size of hash table (2^16) */
struct qmsg_t { /* Holder for queued packets */
int state; /* 0=empty, 1=full */
uint16_t seq; /* The sequence number */
- uint8_t type; /* The type of packet */
+ uint8_t type; /* The type of packet */
void *cbp; /* Application specific pointer */
union gtp_packet p; /* The packet stored */
int l; /* Length of the packet */