blob: e273ae51ef47a7964abf9ddf2aae0a9fdd30f195 (
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_phone_power(struct lgsm_handle *lh, int power)
{
int type;
if (power)
type = GSMD_PHONE_POWERUP;
else
type = GSMD_PHONE_POWERDOWN;
return lgsm_send_simple(lh, GSMD_MSG_PHONE, type);
}
|