repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
Security
/
MT_SSLIOP
/
Server_Worker.cpp
blob
0d3f42a283f4363c43b7c22884ac8ec41a4db821
1
#include
"Server_Worker.h"
2
3
Server_Worker
::
Server_Worker
(
CORBA
::
ORB_ptr orb
)
4
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
5
{
6
}
7
8
int
9
Server_Worker
::
svc
(
void
)
10
{
11
try
12
{
13
this
->
orb_
->
run
();
14
}
15
catch
(
const
CORBA
::
Exception
&)
16
{
17
}
18
return
0
;
19
}