00001
00002
00003
00004
00005
00006 ACE_INLINE
00007 ACE_TLI_Connector::ACE_TLI_Connector (ACE_TLI_Stream &new_stream,
00008 const ACE_Addr &remote_sap,
00009 ACE_Time_Value *timeout,
00010 const ACE_Addr &local_sap,
00011 int reuse_addr,
00012 int flags,
00013 int perms,
00014 const char device[],
00015 struct t_info *info,
00016 int rw_flag,
00017 struct netbuf *udata,
00018 struct netbuf *opt)
00019 {
00020 ACE_TRACE ("ACE_TLI_Connector::ACE_TLI_Connector");
00021 if (this->connect (new_stream,
00022 remote_sap,
00023 timeout,
00024 local_sap,
00025 reuse_addr,
00026 flags,
00027 perms,
00028 device,
00029 info,
00030 rw_flag,
00031 udata,
00032 opt) == -1
00033 && timeout != 0 && !(errno == EWOULDBLOCK || errno == ETIME))
00034 ACE_ERROR ((LM_ERROR,
00035 ACE_LIB_TEXT ("%p\n"),
00036 ACE_LIB_TEXT ("ACE_TLI_Stream::ACE_TLI_Stream")));
00037 }
00038
00039 ACE_INLINE
00040 int
00041 ACE_TLI_Connector::reset_new_handle (ACE_HANDLE handle)
00042 {
00043 ACE_UNUSED_ARG (handle);
00044
00045 return 0;
00046 }
00047