0c9917a8b829939aa5fe709ce5d29e140b25b336
[elisp/liece.git] / dcc / naddr.mli
1 (* Network address handling module.
2
3 This file is part of Liece.                                          
4
5 Author: Daiki Ueno <daiki@kake.info.waseda.ac.jp>                    
6 Created: 1998-09-28                                               
7 Revised: 1999-01-28                                               
8 Keywords: IRC, liece, DCC                                        
9
10 This program is free software; you can redistribute it and/or modify 
11 it under the terms of the GNU General Public License as published by 
12 the Free Software Foundation; either version 2, or (at your option)  
13 any later version.                                                   
14                                                                       
15 This program is distributed in the hope that it will be useful,      
16 but WITHOUT ANY WARRANTY; without even the implied warranty of       
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the      
18 GNU General Public License for more details.                         
19                                                                       
20 You should have received a copy of the GNU General Public License    
21 along with GNU Emacs; see the file COPYING.  If not, write to the    
22 Free Software Foundation, Inc., 59 Temple Place - Suite 330,         
23 Boston, MA 02111-1307, USA.  *)
24
25 val encode : string -> string;;
26     (* [Naddr.encode s] encodes the XXX.XXX.XXX.XXX address [s] into
27        another string packed by network byte order. *)
28
29 val decode : string -> string;;
30     (* [Naddr.decode s] does the inverse job than [Naddr.encode],
31        restoring initial expression of address. *)