89cbdf793e93391fcc7803fb4d0d749a3d3ccfef
[ric-plt/lib/rmr.git] / src / rmr / si / src / si95 / sigetname.c
1 // vim: noet sw=4 ts=4:
2 /*
3 ==================================================================================
4     Copyright (c) 2020 Nokia
5     Copyright (c) 2020 AT&T Intellectual Property.
6
7    Licensed under the Apache License, Version 2.0 (the "License");
8    you may not use this file except in compliance with the License.
9    You may obtain a copy of the License at
10
11        http://www.apache.org/licenses/LICENSE-2.0
12
13    Unless required by applicable law or agreed to in writing, software
14    distributed under the License is distributed on an "AS IS" BASIS,
15    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16    See the License for the specific language governing permissions and
17    limitations under the License.
18 ==================================================================================
19 */
20
21 /*
22  ------------------------------------------------------------------------
23  Mnemonic:      sigetname
24  Abstract:      returns the name of the socket for a given sid
25  Parms:         sid - the socket id as returned by open/listen/connect
26  Date:          21 July 2003 
27  Author:        E. Scott Daniels
28  ------------------------------------------------------------------------
29 */
30 #include "sisetup.h"
31
32 extern char *SIgetname( int sid ) { 
33         struct sockaddr oaddr;     //  pointer to address in TCP binary format 
34         char    *buf;
35         int     len;
36
37         len = sizeof( oaddr );
38         getsockname( sid, &oaddr, &len );
39         SIaddress(  &oaddr, (void **) &buf, AC_TODOT );
40         return buf;
41 }