use the new osmocom/core/prim.h header file

(introduced by libosmocore 9b21e88367eea8cdf200cf06fae99dec06e712a7)
This commit is contained in:
Harald Welte 2011-06-23 14:16:25 +02:00
parent 07d1f1f7d2
commit 6d7b343149
2 changed files with 1 additions and 21 deletions

View File

@ -1,20 +0,0 @@
#ifndef OSMO_PRIMITIVE_H
#define OSMO_PRIMITIVE_H
#include <stdint.h>
enum osmo_prim_operation {
PRIM_OP_REQUEST,
PRIM_OP_RESPONSE,
PRIM_OP_INDICATION,
PRIM_OP_CONFIRM,
};
struct osmo_prim_hdr {
uint16_t sap;
uint16_t primitive;
enum osmo_prim_operation operation;
struct msgb *msg; /* message containing associated data */
};
#endif

View File

@ -3,7 +3,7 @@
#include <stdint.h>
#include "osmo_prim.h"
#include <osmocom/core/prim.h>
#include "tetra_common.h"