ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/sockinfo.h
(Generate patch)

Comparing gvpe/src/sockinfo.h (file contents):
Revision 1.1 by pcg, Fri Mar 28 04:05:10 2003 UTC vs.
Revision 1.3 by pcg, Wed Apr 2 05:15:00 2003 UTC

1/* 1/*
2 sockinfo.h -- socket address management 2 sockinfo.h -- socket address management
3 Copyright (C) 1998-2002 Ivo Timmermans <ivo@o2w.nl> 3
4 2000-2002 Guus Sliepen <guus@sliepen.eu.org> 4 Copyright (C) 2003 Marc Lehmann <pcg@goof.com>
5 2003 Marc Lehmannn <pcg@goof.com>
6 5
7 This program is free software; you can redistribute it and/or modify 6 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or 8 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version. 9 (at your option) any later version.
17 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software 17 along with this program; if not, write to the Free Software
19 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20*/ 19*/
21 20
22#ifndef SOCKINFO_H__ 21#ifndef VPE_SOCKINFO_H__
23#define SOCKINFO_H__ 22#define VPE_SOCKINFO_H__
24 23
25#include <sys/socket.h> 24#include <sys/socket.h>
26#include <netinet/in.h> 25#include <netinet/in.h>
27 26
28#include "conf.h" 27#include "conf.h"
35 u16 port; 34 u16 port;
36 u8 prot; 35 u8 prot;
37 u8 pad1; 36 u8 pad1;
38 37
39 void set (const sockaddr_in *sa, u8 prot_ = PROT_UDPv4); 38 void set (const sockaddr_in *sa, u8 prot_ = PROT_UDPv4);
40 void set (const conf_node *conf); 39 void set (const conf_node *conf, u8 prot_ = PROT_UDPv4);
41 40
42 operator const char *() const; 41 operator const char *() const;
43 42
44 const sockaddr *sav4 () const; 43 const sockaddr *sav4 () const;
45 const socklen_t salenv4 () const 44 const socklen_t salenv4 () const
46 {
47 return sizeof (sockaddr_in); 45 { return sizeof (sockaddr_in); }
48 }
49 46
50 const char *ntoa () const; 47 const char *ntoa () const;
51 48
52 sockinfo() 49 sockinfo() { prot = 0; }
53 {
54 prot = 0;
55 }
56 50
57 sockinfo(const sockaddr_in &sa, u8 prot_ = PROT_UDPv4) 51 sockinfo(const sockaddr_in &sa, u8 prot_ = PROT_UDPv4)
58 {
59 set (&sa, prot_); 52 { set (&sa, prot_); }
60 } 53
54 sockinfo(const conf_node *conf, u8 prot_ = PROT_UDPv4)
55 { set (conf, prot_); }
61 }; 56 };
62 57
63inline bool 58inline bool
64operator == (const sockinfo &a, const sockinfo &b) 59operator == (const sockinfo &a, const sockinfo &b)
65{ 60{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines