summaryrefslogtreecommitdiff
path: root/src/libgsmd/libgsmd_modem.c
blob: e01b350e62394dc40a50d72b6ecc732c030124bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#include <libgsmd/libgsmd.h>
#include <libgsmd/misc.h>

#include <gsmd/usock.h>
#include <gsmd/event.h>

#include "lgsm_internals.h"

int lgsm_modem_power(struct lgsm_handle *lh, int power)
{
	int type;

	if (power)
		type = GSMD_MODEM_POWERUP;
	else
		type = GSMD_MODEM_POWERDOWN;
		
	return lgsm_send_simple(lh, GSMD_MSG_MODEM, type);
}
personal git repositories of Harald Welte. Your mileage may vary