Skip to content

Commit

Permalink
Hide private members of VSGI implementation with 'internal' trait
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Jan 11, 2016
1 parent 5b46316 commit bef03cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vsgi-fastcgi.vala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace VSGI.FastCGI {
/**
* Process the error on the stream.
*/
private inline void process_error (global::FastCGI.Stream stream) throws IOError {
internal inline void process_error (global::FastCGI.Stream stream) throws IOError {
var error = new GLib.Error (IOError.quark (),
FileUtils.error_from_errno (stream.get_error ()), // TODO: fix and use IOError.from_errno
strerror (stream.get_error ()));
Expand Down Expand Up @@ -58,7 +58,7 @@ namespace VSGI.FastCGI {
throw (IOError) error;
}

private class StreamInputStream : InputStream, PollableInputStream {
internal class StreamInputStream : InputStream, PollableInputStream {

public GLib.Socket socket { construct; get; }

Expand Down Expand Up @@ -111,7 +111,7 @@ namespace VSGI.FastCGI {
}
}

private class StreamOutputStream : OutputStream, PollableOutputStream {
internal class StreamOutputStream : OutputStream, PollableOutputStream {

public GLib.Socket socket { construct; get; }

Expand Down

0 comments on commit bef03cf

Please sign in to comment.