From 7e85d15cb61229e9ba1b4a0f1f6c4ab19d436ac7 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 12 Mar 2011 15:08:07 +0000 Subject: Add a deaf monkey frontend. TODO: Make it listen svn path=/trunk/netsurf/; revision=11968 --- monkey/401login.c | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 monkey/401login.c (limited to 'monkey/401login.c') diff --git a/monkey/401login.c b/monkey/401login.c new file mode 100644 index 000000000..a079ef30d --- /dev/null +++ b/monkey/401login.c @@ -0,0 +1,52 @@ +/* + * Copyright 2011 Daniel Silverstone + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * NetSurf is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "desktop/401login.h" +#include "utils/ring.h" + +#include +#include + +typedef struct monkey401 { + struct monkey401 *r_next, *r_prev; + uint32_t num; + char *host; /* Ignore */ + nserror (*cb)(bool,void*); + void *pw; +} monkey401_t; + +static monkey401_t *m4_ring = NULL; +static uint32_t m4_ctr = 0; + +void gui_401login_open(const char *url, const char *realm, + nserror (*cb)(bool proceed, void *pw), void *cbpw) +{ + monkey401_t *m4t = calloc(sizeof(*m4t), 1); + if (m4t == NULL) + cb(false, cbpw); + m4t->cb = cb; + m4t->pw = cbpw; + m4t->num = m4_ctr++; + + RING_INSERT(m4_ring, m4t); + + fprintf(stdout, "401LOGIN OPEN M4 %u URL %s REALM %s\n", + m4t->num, url, realm); +} + + -- cgit v1.2.3