| 45 | } |
| 46 | |
| 47 | int |
| 48 | InfoRepoMulticastResponder::init( |
| 49 | CORBA::ORB_ptr orb, |
| 50 | u_short port, |
| 51 | const char *mcast_addr) |
| 52 | { |
| 53 | if (this->initialized_) { |
| 54 | ACE_ERROR_RETURN((LM_ERROR, "InfoRepoMulticastResponder::init() already initialized\n"), -1); |
| 55 | } |
| 56 | |
| 57 | if (this->mcast_addr_.set(port, mcast_addr) == -1) |
| 58 | ACE_ERROR_RETURN((LM_ERROR, "InfoRepoMulticastResponder::init() %p\n", ACE_TEXT("set")), -1); |
| 59 | |
| 60 | return common_init(orb); |
| 61 | } |
| 62 | |
| 63 | int |
| 64 | InfoRepoMulticastResponder::init( |
nothing calls this directly
no test coverage detected