File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ namespace VSGI.FastCGI {
30
30
/**
31
31
* Process the error on the stream.
32
32
*/
33
- private inline void process_error (global ::FastCGI .Stream stream ) throws IOError {
33
+ internal inline void process_error (global ::FastCGI .Stream stream ) throws IOError {
34
34
var error = new GLib .Error (IOError . quark (),
35
35
FileUtils . error_from_errno (stream. get_error ()), // TODO: fix and use IOError.from_errno
36
36
strerror (stream. get_error ()));
@@ -58,7 +58,7 @@ namespace VSGI.FastCGI {
58
58
throw (IOError ) error;
59
59
}
60
60
61
- private class StreamInputStream : InputStream , PollableInputStream {
61
+ internal class StreamInputStream : InputStream , PollableInputStream {
62
62
63
63
public GLib . Socket socket { construct; get ; }
64
64
@@ -111,7 +111,7 @@ namespace VSGI.FastCGI {
111
111
}
112
112
}
113
113
114
- private class StreamOutputStream : OutputStream , PollableOutputStream {
114
+ internal class StreamOutputStream : OutputStream , PollableOutputStream {
115
115
116
116
public GLib . Socket socket { construct; get ; }
117
117
You can’t perform that action at this time.
0 commit comments