#include <stddef.h>
#include <sys/types.h>
#include <time.h>
#include "common/mopdef.h"
void
mopPutChar(u_char *pkt, int *idx, u_char value)
{
pkt[*idx] = value;
(*idx)++;
}
void
mopPutShort(u_char *pkt, int *idx, u_short value)
{
pkt[*idx] = value % 256;
pkt[*idx+1] = value / 256;
*idx += 2;
}
void
mopPutNShort(u_char *pkt, int *idx, u_short value)
{
pkt[*idx] = value / 256;
pkt[*idx+1] = value % 256;
*idx += 2;
}
void
mopPutLong(u_char *pkt, int *idx, u_long value)
{
int i;
for (i = 0; i < 4; i++) {
pkt[*idx+i] = (u_char)(value % 256);
value /= 256;
}
*idx += 4;
}
void
mopPutMulti(u_char *pkt, int *idx, u_char *value, int size)
{
int i;
for (i = 0; i < size; i++)
pkt[*idx+i] = value[i];
*idx += size;
}
void
mopPutTime(u_char *pkt, int *idx, time_t value)
{
time_t tnow;
struct tm *timenow;
if (value == 0)
tnow = time(NULL);
else
tnow = value;
timenow = localtime(&tnow);
mopPutChar(pkt, idx, 10);
mopPutChar(pkt, idx, (timenow->tm_year / 100) + 19);
mopPutChar(pkt, idx, (timenow->tm_year % 100));
mopPutChar(pkt, idx, (timenow->tm_mon + 1));
mopPutChar(pkt, idx, (timenow->tm_mday));
mopPutChar(pkt, idx, (timenow->tm_hour));
mopPutChar(pkt, idx, (timenow->tm_min));
mopPutChar(pkt, idx, (timenow->tm_sec));
mopPutChar(pkt, idx, 0x00);
mopPutChar(pkt, idx, 0x00);
mopPutChar(pkt, idx, 0x00);
}
void
mopPutHeader(u_char *pkt, int *idx, u_char *dst, u_char *src, u_short proto,
int trans)
{
mopPutMulti(pkt, idx, dst, 6);
mopPutMulti(pkt, idx, src, 6);
if (trans == TRANS_8023) {
mopPutShort(pkt, idx, 0);
mopPutChar(pkt, idx, MOP_K_PROTO_802_DSAP);
mopPutChar(pkt, idx, MOP_K_PROTO_802_SSAP);
mopPutChar(pkt, idx, MOP_K_PROTO_802_CNTL);
mopPutChar(pkt, idx, 0x08);
mopPutChar(pkt, idx, 0x00);
mopPutChar(pkt, idx, 0x2b);
}
#if !defined(__FreeBSD__)
mopPutNShort(pkt, idx, proto);
#else
if (trans == TRANS_8023) {
mopPutNShort(pkt, idx, proto);
} else {
mopPutShort(pkt, idx, proto);
}
#endif
if (trans == TRANS_ETHER)
mopPutShort(pkt, idx, 0);
}
void
mopPutLength(u_char *pkt, int trans, u_short len)
{
int idx;
switch (trans) {
case TRANS_ETHER:
idx = 14;
mopPutShort(pkt, &idx, len-16);
break;
case TRANS_8023:
idx = 12;
#if !defined(__FreeBSD__)
mopPutNShort(pkt, &idx, len-14);
#else
mopPutShort(pkt, &idx, len-14);
#endif
break;
}
}