Changeset 63 in cheroxy


Ignore:
Timestamp:
01/29/13 14:48:01 (11 years ago)
Author:
cheese
Message:

#1 change function to create socket

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/CRXSocket.h

    r61 r63  
    4949     * @return success : socket id, failed : -1.
    5050     */
    51     int         CreateSocket    (void);
     51    int         Create          (void);
    5252
    5353    /**
  • trunk/src/CRXSocket.cpp

    r61 r63  
    261261
    262262int
    263 CRXSocket::CreateSocket (void)
     263CRXSocket::Create (void)
    264264{
    265265    int aResult = -1;
     
    307307
    308308    /*----------------------------------------------------------------*/
    309     aResult = CreateSocket ();
     309    aResult = Create ();
    310310    if (aResult < 0)
    311311    {
     
    370370
    371371    /*----------------------------------------------------------------*/
    372     aResult = CreateSocket ();
     372    aResult = Create ();
    373373    if (aResult < 0)
    374374    {
Note: See TracChangeset for help on using the changeset viewer.