Changeset 7c5be134382d2b77a4c90aa674c479b969404f04

Show
Ignore:
Timestamp:
01/06/07 23:29:50 (6 years ago)
Author:
Philipp Kern <phil@…>
Parents:
20f1da0a3eee933248031f80b342c4b90fbce2b9
Children:
48902fd31ebf61d83a818a0bdcccbe468b65c1a9
git-committer:
Philipp Kern <phil@0x539.de> / 2007-01-06T22:29:50Z+0000
Message:

[project @ Replaced ERROR with IOERROR in buffer_wrappers according to new net6 API]

Original author: Armin Burgmeier <armin@…>
Date: 2005-04-09 15:41:38+00:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/buffer_wrapper.cpp

    r20f1da0 r7c5be13  
    8888 
    8989        if(condition & (Glib::IO_ERR | Glib::IO_HUP) ) 
    90                 sock.error_event().emit(sock, net6::socket::ERROR); 
     90                sock.error_event().emit(sock, net6::socket::IOERROR); 
    9191         
    9292        if(condition & (Glib::IO_IN) ) 
     
    279279        if(condition & (Glib::IO_ERR | Glib::IO_HUP ) ) 
    280280                serv_sock->error_event().emit( 
    281                         *serv_sock, net6::socket::ERROR); 
     281                        *serv_sock, net6::socket::IOERROR); 
    282282 
    283283        if(condition & (Glib::IO_IN) ) 
     
    310310 
    311311                if(condition & (Glib::IO_ERR | Glib::IO_HUP) ) 
    312                         sock.error_event().emit(sock, net6::socket::ERROR); 
     312                        sock.error_event().emit(sock, net6::socket::IOERROR); 
    313313 
    314314                if(condition & Glib::IO_IN)