Skip to content

Commit bef03cf

Browse files
committed
Hide private members of VSGI implementation with 'internal' trait
1 parent 5b46316 commit bef03cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vsgi-fastcgi.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace VSGI.FastCGI {
3030
/**
3131
* Process the error on the stream.
3232
*/
33-
private inline void process_error (global::FastCGI.Stream stream) throws IOError {
33+
internal inline void process_error (global::FastCGI.Stream stream) throws IOError {
3434
var error = new GLib.Error (IOError.quark (),
3535
FileUtils.error_from_errno (stream.get_error ()), // TODO: fix and use IOError.from_errno
3636
strerror (stream.get_error ()));
@@ -58,7 +58,7 @@ namespace VSGI.FastCGI {
5858
throw (IOError) error;
5959
}
6060

61-
private class StreamInputStream : InputStream, PollableInputStream {
61+
internal class StreamInputStream : InputStream, PollableInputStream {
6262

6363
public GLib.Socket socket { construct; get; }
6464

@@ -111,7 +111,7 @@ namespace VSGI.FastCGI {
111111
}
112112
}
113113

114-
private class StreamOutputStream : OutputStream, PollableOutputStream {
114+
internal class StreamOutputStream : OutputStream, PollableOutputStream {
115115

116116
public GLib.Socket socket { construct; get; }
117117

0 commit comments

Comments
 (0)