#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/queue.h>
#import <CoreFoundation/CFSocket.h>
#include "ppp_msg.h"
#include "ppp_client.h"
TAILQ_HEAD(, client) client_head;
u_long client_init_all ()
{
TAILQ_INIT(&client_head);
return 0;
}
struct client *client_new (CFSocketRef ref)
{
struct client *client;
client = malloc(sizeof(struct client));
if (!client)
return 0;
bzero(client, sizeof(struct client));
CFRetain(ref);
client->ref = ref;
TAILQ_INIT(&client->opts_head);
TAILQ_INSERT_TAIL(&client_head, client, next);
return client;
}
void client_dispose (struct client *client)
{
struct client_opts *opts;
TAILQ_REMOVE(&client_head, client, next);
while (opts = TAILQ_FIRST(&(client->opts_head))) {
TAILQ_REMOVE(&(client->opts_head), opts, next);
free(opts);
}
CFRelease(client->ref);
free(client);
}
struct options *client_newoptset (struct client *client, u_long link)
{
struct client_opts *opts;
opts = malloc(sizeof(struct client_opts));
if (!opts)
return 0;
bzero(opts, sizeof(struct client_opts));
opts->link = link;
TAILQ_INSERT_TAIL(&(client->opts_head), opts, next);
return &opts->opts;
}
struct options *client_findoptset (struct client *client, u_long link)
{
struct client_opts *opts;
TAILQ_FOREACH(opts, &(client->opts_head), next)
if (opts->link == link)
return &opts->opts;
return 0;
}
u_long client_notify (u_char *serviceid, u_long link, u_long state, u_long error)
{
struct ppp_msg_hdr msg;
struct client *client;
int doit;
TAILQ_FOREACH(client, &client_head, next) {
doit = 0;
if (client->notify) {
if (client->notify_useservice) {
doit = (serviceid
&& ((client->notify_service == 0)
|| !strcmp(serviceid, client->notify_service)));
}
else {
doit = ((client->notify_link == link) || ((client->notify_link >> 16) == 0xFFFF) || (((client->notify_link >> 16) == (link >> 16)) && ((client->notify_link >> 16) == 0xFFFF)));
}
}
if (doit) {
bzero(&msg, sizeof(msg));
msg.m_type = PPP_EVENT;
msg.m_link = link;
msg.m_result = state;
msg.m_cookie = error;
if (client->notify_useservice) {
msg.m_flags |= USE_SERVICEID;
msg.m_link = strlen(serviceid);
}
if (write(CFSocketGetNative(client->ref), &msg, sizeof(msg)) != sizeof(msg))
continue;
if (client->notify_useservice) {
if (write(CFSocketGetNative(client->ref), serviceid, msg.m_link) != msg.m_link)
continue;
}
}
}
return 0;
}
struct client *client_findbysocketref(CFSocketRef ref)
{
struct client *client;
TAILQ_FOREACH(client, &client_head, next)
if (client->ref == ref)
return client;
return 0;
}