(file) Return to addr.h CVS log (file) (dir) Up to [OMI] / omi / sock

File: [OMI] / omi / sock / addr.h (download)
Revision: 1.1, Mon Jun 25 18:54:13 2012 UTC (11 years, 11 months ago) by mike
Branch: MAIN
CVS Tags: OMI_1_0_2, OMI_1_0_0
1.0.2

/*
**==============================================================================
**
** Open Management Infrastructure (OMI)
**
** Copyright (c) Microsoft Corporation
** 
** Licensed under the Apache License, Version 2.0 (the "License"); you may not 
** use this file except in compliance with the License. You may obtain a copy 
** of the License at 
**
**     http://www.apache.org/licenses/LICENSE-2.0 
**
** THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
** KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 
** WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 
** MERCHANTABLITY OR NON-INFRINGEMENT. 
**
** See the Apache 2 License for the specific language governing permissions 
** and limitations under the License.
**
**==============================================================================
*/

#ifndef _omi_addr_h
#define _omi_addr_h

#include "config.h"
#include <string.h>
#include <common.h>

BEGIN_EXTERNC

typedef struct _Addr
{
    MI_Uint64 opaque[2];
}
Addr;

MI_Result Addr_Init(
    Addr* self,
    const char* host,
    unsigned short port);

void Addr_InitAny(
    Addr* self,
    unsigned short port);

END_EXTERNC

#endif /* _omi_addr_h */

ViewCVS 0.9.2