restructuring og Origin Class into it's own header files
[metaproxy-moved-to-github.git] / src / origin.cpp
1 /* $Id: origin.cpp,v 1.3 2006-09-26 13:02:50 marc Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4    See the LICENSE file for details
5  */
6
7
8 //#include "config.hpp"
9 #include "origin.hpp"
10
11 #include <iostream>
12
13 namespace mp = metaproxy_1;
14
15 mp::Origin::Origin(std::string server_host, 
16                    unsigned int server_port) 
17     : m_type(API), m_address(""), m_origin_id(0),
18       m_server_host(server_host), m_server_port(server_port)
19 {
20 }
21
22 std::string mp::Origin::server_host() const
23 {
24     return m_server_host;
25 };
26
27 unsigned int mp::Origin::server_port() const
28 {
29     return m_server_port;
30 };
31
32
33 void mp::Origin::set_tcpip_address(std::string addr, unsigned long s)
34 {
35     m_type = TCPIP;
36     m_address = addr;
37     m_origin_id = s;
38 }
39
40 std::ostream& std::operator<<(std::ostream& os,  mp::Origin& o)
41 {
42     if (o.m_address != "")
43         os << o.m_address;
44     else
45         os << "0";
46     os << ":" << o.m_origin_id;
47     return os;
48 }
49                 
50 /*
51  * Local variables:
52  * c-basic-offset: 4
53  * indent-tabs-mode: nil
54  * c-file-style: "stroustrup"
55  * End:
56  * vim: shiftwidth=4 tabstop=8 expandtab
57  */