~ubuntu-branches/ubuntu/precise/gnutls28/precise

« back to all changes in this revision

Viewing changes to lib/gnutlsxx.cpp

  • Committer: Package Import Robot
  • Author(s): Andreas Metzler
  • Date: 2011-09-20 19:37:06 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20110920193706-a9phjijvddzg3nkl
Tags: 3.0.3-1
* New upstream version. (Includes a fix for #640639)
* Bump shlibs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
418
418
 
419
419
  void session::set_transport_lowat (size_t num)
420
420
  {
421
 
    gnutls_transport_set_lowat (s, num);
 
421
    throw (exception (GNUTLS_E_UNIMPLEMENTED_FEATURE));
422
422
  }
423
423
 
424
424
  void session::set_transport_push_function (gnutls_push_func push_func)
892
892
    if (ret < 0)
893
893
      {
894
894
        delete dst;
895
 
        throw (ret);
 
895
        throw (exception (ret));
896
896
      }
897
897
 
898
898
    return *dst;
944
944
    if (ret < 0)
945
945
      {
946
946
        delete dst;
947
 
        throw (ret);
 
947
        throw (exception (ret));
948
948
      }
949
949
 
950
950
    return *dst;