summaryrefslogtreecommitdiff
path: root/webext-surf.c
diff options
context:
space:
mode:
Diffstat (limited to 'webext-surf.c')
-rw-r--r--webext-surf.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/webext-surf.c b/webext-surf.c
index d2753b5..f09714e 100644
--- a/webext-surf.c
+++ b/webext-surf.c
@@ -19,23 +19,6 @@
static WebKitWebExtension *webext;
static int sock;
-static void
-msgsurf(guint64 pageid, const char *s)
-{
- static char msg[MSGBUFSZ];
- size_t sln = strlen(s);
- int ret;
-
- if ((ret = snprintf(msg, sizeof(msg), "%c%s", pageid, s))
- >= sizeof(msg)) {
- fprintf(stderr, "webext: msg: message too long: %d\n", ret);
- return;
- }
-
- if (send(sock, msg, ret, 0) < 0)
- fprintf(stderr, "webext: error sending: %s\n", msg+1);
-}
-
static gboolean
readsock(GIOChannel *s, GIOCondition c, gpointer unused)
{