Mercurial > emacs
view lisp/erc/erc-identd.el @ 69061:783439580869
(mac_draw_string_common): Remove arg MODE. New arg
BG_WIDTH. All uses changed. Draw background if BG_WIDTH is not zero.
(mac_draw_image_string, mac_draw_image_string_16): New arg BG_WIDTH.
[USE_CG_TEXT_DRAWING] (mac_draw_image_string_cg): Rename from
mac_draw_string_cg. New arg BG_WIDTH. All uses changed. Draw
background if BG_WIDTH is not zero. Use float constants as
divisors instead of double. Use alloca instead of xmalloc/xfree.
(x_draw_glyph_string_background, x_draw_glyph_string_foreground)
[!MAC_OS8 || USE_ATSUI]: Background may be drawn using
mac_draw_image_string* functions.
(XLoadQueryFont) [MAC_OS8 && USE_ATSUI]: Don't adjust heights of
some fonts when srcCopy text transfer mode might be used.
(mac_begin_clip, mac_end_clip): Check if region is empty.
(mac_set_clip_rectangles): When resetting clip region, make it
empty instead of disposing of it.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Tue, 21 Feb 2006 08:09:44 +0000 |
parents | 7010bb070445 |
children | a90c92cb9783 |
line wrap: on
line source
;;; erc-identd.el --- RFC1413 (identd authentication protocol) server ;; Copyright (C) 2003, 2006 Free Software Foundation, Inc. ;; Author: John Wiegley <johnw@gnu.org> ;; Keywords: comm, processes ;; This file is part of GNU Emacs. ;; GNU Emacs 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; either version 2, or (at your option) ;; any later version. ;; GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. ;;; Commentary: ;; You can have a local identd server (running on port 8113; I use DNAT ;; to bind 113->8113) if you add this to .emacs.el: ;; (add-hook 'erc-connect-pre-hook 'erc-identd-start) ;; (add-hook 'erc-disconnected-hook 'erc-identd-stop) ;;; Code: (defvar erc-identd-process nil) (defun erc-identd-filter (proc string) "This filter implements RFC1413 (identd authentication protocol)." (let ((erc-identd-process proc)) (when (string-match "\\([0-9]+\\)\\s-*,\\s-*\\([0-9]+\\)" string) (let ((port-on-server (match-string 1 string)) (port-on-client (match-string 2 string))) (send-string erc-identd-process (format "%s, %s : USERID : %s : %s\n" port-on-server port-on-client system-type (user-login-name))) (process-send-eof erc-identd-process))))) (defun erc-identd-start (&optional port) "Start an identd server listening to port 8113. Port 113 (auth) will need to be redirected to port 8113 on your machine -- using iptables, or a program like redir which can be run from inetd. The idea is to provide a simple identd server when you need one, without having to install one globally on your system." (interactive (list (read-string "Serve identd requests on port: " "8113"))) (if (null port) (setq port 8113) (if (stringp port) (setq port (string-to-number port)))) (if erc-identd-process (delete-process erc-identd-process)) (if (fboundp 'make-network-process) (setq erc-identd-process (make-network-process :name "identd" :buffer (generate-new-buffer "identd") :service port :server t :noquery t :filter 'erc-identd-filter)) (open-network-stream-server "identd" (generate-new-buffer "identd") port nil 'erc-identd-filter))) (defun erc-identd-stop (&rest ignore) (interactive) (when erc-identd-process (delete-process erc-identd-process) (setq erc-identd-process nil))) (provide 'erc-identd) ;;; erc-identd.el ends here ;; ;; Local Variables: ;; indent-tabs-mode: t ;; tab-width: 8 ;; End: ;; arch-tag: e0b5f926-0f35-40b9-8ddb-ca06b62a7544