source: trunk/package.lisp @ 120

Last change on this file since 120 was 119, checked in by Erik Huelsmann, 19 years ago

Rename slots with same function in preparation of more DCC implementation:
{server-stream,dcc-stream} -> network-stream.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1;;;; $Id: package.lisp 119 2006-01-25 20:03:27Z ehuelsmann $
2;;;; $Source$
3
4;;;; See the LICENSE file for licensing information.
5
6(in-package :cl-user)
7
8;; the exports list needs some cleanup/clarification/categorization
9(eval-when (:execute :load-toplevel :compile-toplevel)
10  (defpackage :cl-irc
11      (:use :cl)
12    (:nicknames :irc)
13    (:export :read-message-loop
14             :read-message
15             :start-background-message-handler
16             :stop-background-message-handler
17             :socket-connect
18             :server-name
19             :no-such-reply
20             :irc-mode
21             :boolean-value-mode
22             :single-value-mode
23             :list-value-mode
24             :add-mode
25             :remove-mode
26             :has-mode-p
27             :has-mode-value-p
28             :get-mode
29             :set-mode
30             :unset-mode
31             :parse-mode-arguments
32             :parse-raw-message
33             :normalize-nickname
34             :normalize-channel-name
35             :name
36             :normalized-name
37             :topic
38             :modes
39             :user-count
40             :users
41             :network-stream
42             :client-stream
43             :channels
44             :add-hook
45             :remove-hook
46             :remove-hooks
47             :remove-all-hooks
48             :add-default-hooks
49             :get-hooks
50             :make-user
51             :nickname
52             :normalized-nickname
53             :username
54             :hostname
55             :realname
56             :change-nickname
57             :irc-message
58             :source
59             :user
60             :host
61             :command
62             :arguments
63             :trailing-argument
64             :connection
65             :received-time
66             :raw-message-string
67             :make-connection
68             :make-channel
69             :channel
70             :client-log
71             :find-channel
72             :find-reply-name
73             :remove-channel
74             :remove-all-channels
75             :add-channel
76             :find-user
77             :add-user
78             :remove-all-users
79             :remove-user
80             :self-message-p
81             :pass
82             :nick
83             :user-
84             :oper
85             :mode
86             :op
87             :deop
88             :voice
89             :devoice
90             :ban
91             :unban
92             :service
93             :quit
94             :squit
95             :join
96             :part
97             :part-all
98             :topic-
99             :names
100             :list-
101             :invite
102             :kick
103             :privmsg
104             :notice
105             :motd-
106             :lusers
107             :version
108             :stats
109             :links
110             :time-
111             :connect
112             :trace-
113             :admin
114             :info
115             :servlist
116             :squery
117             :who
118             :whois
119             :whowas
120             :kill
121             :ping
122             :pong
123             :error-
124             :away
125             :rehash
126             :die
127             :restart-
128             :summon
129             :users-
130             :wallops
131             :userhost
132             :ison)))
133
Note: See TracBrowser for help on using the repository browser.