~ubuntu-branches/ubuntu/oneiric/libclaw/oneiric

« back to all changes in this revision

Viewing changes to claw/code/basic_socket.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge
  • Date: 2010-12-23 20:55:14 UTC
  • mfrom: (4.2.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101223205514-s10m6ywla7s4ttqf
Tags: 1.6.1-3
UploadĀ inĀ sid

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
  CLAW is a free library without any particular aim but being useful to 
5
5
  anyone.
6
6
 
7
 
  Copyright (C) 2005-2008 Julien Jorge
 
7
  Copyright (C) 2005-2010 Julien Jorge
8
8
 
9
9
  This library is free software; you can redistribute it and/or
10
10
  modify it under the terms of the GNU Lesser General Public
45
45
 * \brief Open the socket.
46
46
 * \return this is everything works fine, NULL otherwise.
47
47
 */
48
 
claw::net::basic_socket::basic_socket* claw::net::basic_socket::open()
 
48
claw::net::basic_socket* claw::net::basic_socket::open()
49
49
{
50
50
  basic_socket* result = NULL;
51
51
  
62
62
 * \brief Close the socket.
63
63
 * \return this if everything works fine, NULL otherwise.
64
64
 */
65
 
claw::net::basic_socket::basic_socket* claw::net::basic_socket::close()
 
65
claw::net::basic_socket* claw::net::basic_socket::close()
66
66
{
67
67
  basic_socket* result = this;
68
68