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.3 by pcg, Wed Apr 2 05:15:00 2003 UTC vs.
Revision 1.6 by pcg, Mon Apr 7 01:12:56 2003 UTC

33 u32 host; 33 u32 host;
34 u16 port; 34 u16 port;
35 u8 prot; 35 u8 prot;
36 u8 pad1; 36 u8 pad1;
37 37
38 void set (const sockaddr_in *sa, u8 prot_ = PROT_UDPv4); 38 void set (const sockaddr_in *sa, u8 prot_);
39 void set (const conf_node *conf, u8 prot_ = PROT_UDPv4); 39 void set (const conf_node *conf, u8 prot_);
40 void set (const char *hostname, u16 port_, u8 prot_);
41
42 // return the supported protocols
43 u8 supported_protocols (conf_node *conf = 0);
44 bool upgrade_protocol (u8 prot_, conf_node *conf = 0);
40 45
41 operator const char *() const; 46 operator const char *() const;
42 47
43 const sockaddr *sav4 () const; 48 const sockaddr *sav4 () const;
44 const socklen_t salenv4 () const 49 const socklen_t salenv4 () const
45 { return sizeof (sockaddr_in); } 50 { return sizeof (sockaddr_in); }
46 51
47 const char *ntoa () const; 52 const char *ntoa () const;
48 53
54 bool valid () const
55 { return prot != 0 && host != 0; }
56
49 sockinfo() { prot = 0; } 57 sockinfo() { prot = 0; }
50 58
51 sockinfo(const sockaddr_in &sa, u8 prot_ = PROT_UDPv4) 59 sockinfo(const sockaddr_in &sa, u8 prot)
52 { set (&sa, prot_); } 60 { set (&sa, prot); }
53 61
54 sockinfo(const conf_node *conf, u8 prot_ = PROT_UDPv4) 62 sockinfo(const conf_node *conf, u8 prot)
55 { set (conf, prot_); } 63 { set (conf, prot); }
56 }; 64 };
57 65
58inline bool
59operator == (const sockinfo &a, const sockinfo &b) 66bool operator == (const sockinfo &a, const sockinfo &b);
60{ 67bool operator < (const sockinfo &a, const sockinfo &b);
61 return a.host == b.host && a.port == b.port && a.prot == b.prot;
62}
63 68
64#endif 69#endif
65 70

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines