Changeset 1470:4d54b7fbb067
- Timestamp:
- 08/22/10 12:35:08 (18 months ago)
- Branch:
- default
- Location:
- sources/include/libdodo
- Files:
-
- 10 edited
-
cgiFastExchange.h (modified) (2 diffs)
-
ioBlockChannel.h (modified) (4 diffs)
-
ioChannel.h (modified) (8 diffs)
-
ioFileFifo.h (modified) (2 diffs)
-
ioFileRegular.h (modified) (2 diffs)
-
ioMemory.h (modified) (2 diffs)
-
ioNetworkExchange.h (modified) (2 diffs)
-
ioNetworkSslExchange.h (modified) (2 diffs)
-
ioPipe.h (modified) (2 diffs)
-
ioStreamChannel.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sources/include/libdodo/cgiFastExchange.h
r1439 r1470 96 96 * @return amount in bytes of successfully read data 97 97 * @param data defines buffer that will be filled 98 * @note not more th enbs(including null)98 * @note not more than io::channel::bs(including null) 99 99 */ 100 100 virtual unsigned long _read(char * const data) const; … … 104 104 * @return amount in bytes of successfully read data 105 105 * @param data defines buffer that will be filled 106 * @note not more th enbs(including null)106 * @note not more than io::channel::bs(including null) 107 107 */ 108 108 virtual unsigned long _readString(char * const data) const; -
sources/include/libdodo/ioBlockChannel.h
r1439 r1470 59 59 /** 60 60 * @return read data 61 * @note not more th enbs61 * @note not more than io::channel::bs 62 62 */ 63 63 virtual dodo::string read() const; … … 66 66 * @return amount in bytes of successfully written data 67 67 * @param data defines data that will be written 68 * @note not more th enbs68 * @note not more than io::channel::bs 69 69 */ 70 70 virtual unsigned long write(const dodo::string &data) const; … … 73 73 * read null- or newline- terminated string 74 74 * @return read data 75 * @note not more th enbs75 * @note not more than io::channel::bs 76 76 */ 77 77 virtual dodo::string readString() const; … … 81 81 * @return amount in bytes of successfully written data 82 82 * @param data defines data that will be written 83 * @note not more th enbs83 * @note not more than io::channel::bs 84 84 */ 85 85 virtual unsigned long writeString(const dodo::string &data) const; -
sources/include/libdodo/ioChannel.h
r1439 r1470 123 123 /** 124 124 * @return read data 125 * @note not more th enbs125 * @note not more than io::channel::bs 126 126 */ 127 127 virtual dodo::string read() const = 0; … … 130 130 * @return amount in bytes of successfully written data 131 131 * @param data defines data that will be written 132 * @note not more th enbs132 * @note not more than io::channel::bs 133 133 */ 134 134 virtual unsigned long write(const dodo::string &data) const = 0; … … 137 137 * read null- or newline- terminated string 138 138 * @return read data 139 * @note not more th enbs139 * @note not more than io::channel::bs 140 140 */ 141 141 virtual dodo::string readString() const = 0; … … 145 145 * @return amount in bytes of successfully written data 146 146 * @param data defines data that will be written 147 * @note not more th enbs147 * @note not more than io::channel::bs 148 148 */ 149 149 virtual unsigned long writeString(const dodo::string &data) const = 0; … … 161 161 * @return amount in bytes of successfully read data 162 162 * @param data defines buffer that will be filled 163 * @note not more th enbs(including null)163 * @note not more than io::channel::bs(including null) 164 164 */ 165 165 virtual unsigned long _read(char * const data) const = 0; … … 169 169 * @return amount in bytes of successfully read data 170 170 * @param data defines buffer that will be filled 171 * @note not more th enbs(including null)171 * @note not more than io::channel::bs(including null) 172 172 */ 173 173 virtual unsigned long _readString(char * const data) const = 0; … … 176 176 * @return amount in bytes of successfully written data 177 177 * @param data defines data that will be written 178 * @note not more th enbs(including null)178 * @note not more than io::channel::bs(including null) 179 179 */ 180 180 virtual unsigned long _write(const char * const data) const = 0; … … 184 184 * @return amount in bytes of successfully written data 185 185 * @param data defines data that will be written 186 * @note not more th enbs(including null)186 * @note not more than io::channel::bs(including null) 187 187 */ 188 188 virtual unsigned long _writeString(const char * const data) const = 0; -
sources/include/libdodo/ioFileFifo.h
r1439 r1470 146 146 * @return amount in bytes of successfully read data 147 147 * @param data defines buffer that will be filled 148 * @note not more th enbs(including null)148 * @note not more than io::channel::bs(including null) 149 149 */ 150 150 virtual unsigned long _read(char * const data) const; … … 154 154 * @return amount in bytes of successfully read data 155 155 * @param data defines buffer that will be filled 156 * @note not more th enbs(including null)156 * @note not more than io::channel::bs(including null) 157 157 */ 158 158 virtual unsigned long _readString(char * const data) const; -
sources/include/libdodo/ioFileRegular.h
r1439 r1470 144 144 * @return amount in bytes of successfully read data 145 145 * @param data defines buffer that will be filled 146 * @note not more th enbs(including null)146 * @note not more than io::channel::bs(including null) 147 147 */ 148 148 virtual unsigned long _read(char * const data) const; … … 152 152 * @return amount in bytes of successfully read data 153 153 * @param data defines buffer that will be filled 154 * @note not more th enbs(including null)154 * @note not more than io::channel::bs(including null) 155 155 */ 156 156 virtual unsigned long _readString(char * const data) const; -
sources/include/libdodo/ioMemory.h
r1439 r1470 134 134 * @return amount in bytes of successfully read data 135 135 * @param data defines buffer that will be filled 136 * @note not more th enbs(including null)136 * @note not more than io::channel::bs(including null) 137 137 */ 138 138 virtual unsigned long _read(char * const data) const; … … 142 142 * @return amount in bytes of successfully read data 143 143 * @param data defines buffer that will be filled 144 * @note not more th enbs(including null)144 * @note not more than io::channel::bs(including null) 145 145 */ 146 146 virtual unsigned long _readString(char * const data) const; -
sources/include/libdodo/ioNetworkExchange.h
r1439 r1470 169 169 * @return amount in bytes of successfully read data 170 170 * @param data defines buffer that will be filled 171 * @note not more th enbs(including null)171 * @note not more than io::channel::bs(including null) 172 172 */ 173 173 virtual unsigned long _read(char * const data) const; … … 177 177 * @return amount in bytes of successfully read data 178 178 * @param data defines buffer that will be filled 179 * @note not more th enbs(including null)179 * @note not more than io::channel::bs(including null) 180 180 */ 181 181 virtual unsigned long _readString(char * const data) const; -
sources/include/libdodo/ioNetworkSslExchange.h
r1439 r1470 155 155 * @return amount in bytes of successfully read data 156 156 * @param data defines buffer that will be filled 157 * @note not more th enbs(including null)157 * @note not more than io::channel::bs(including null) 158 158 */ 159 159 virtual unsigned long _read(char * const data) const; … … 163 163 * @return amount in bytes of successfully read data 164 164 * @param data defines buffer that will be filled 165 * @note not more th enbs(including null)165 * @note not more than io::channel::bs(including null) 166 166 */ 167 167 virtual unsigned long _readString(char * const data) const; -
sources/include/libdodo/ioPipe.h
r1439 r1470 130 130 * @return amount in bytes of successfully read data 131 131 * @param data defines buffer that will be filled 132 * @note not more th enbs(including null)132 * @note not more than io::channel::bs(including null) 133 133 */ 134 134 virtual unsigned long _read(char * const data) const; … … 138 138 * @return amount in bytes of successfully read data 139 139 * @param data defines buffer that will be filled 140 * @note not more th enbs(including null)140 * @note not more than io::channel::bs(including null) 141 141 */ 142 142 virtual unsigned long _readString(char * const data) const; -
sources/include/libdodo/ioStreamChannel.h
r1439 r1470 59 59 /** 60 60 * @return read data 61 * @note not more th enbs61 * @note not more than io::channel::bs 62 62 */ 63 63 virtual dodo::string read() const; … … 66 66 * @return amount in bytes of successfully written data 67 67 * @param data defines data that will be written 68 * @note not more th enbs68 * @note not more than io::channel::bs 69 69 */ 70 70 virtual unsigned long write(const dodo::string &data) const; … … 73 73 * read null- or newline- terminated string 74 74 * @return read data 75 * @note not more th enbs75 * @note not more than io::channel::bs 76 76 */ 77 77 virtual dodo::string readString() const; … … 81 81 * @return amount in bytes of successfully written data 82 82 * @param data defines data that will be written 83 * @note not more th enbs83 * @note not more than io::channel::bs 84 84 */ 85 85 virtual unsigned long writeString(const dodo::string &data) const;
Note: See TracChangeset
for help on using the changeset viewer.
