Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
026c15a8
Commit
026c15a8
authored
Sep 17, 2015
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pseudotcp: Make structs definitions private
parent
11d4bb97
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
agent/pseudotcp.c
agent/pseudotcp.c
+12
-1
agent/pseudotcp.h
agent/pseudotcp.h
+0
-11
No files found.
agent/pseudotcp.c
View file @
026c15a8
...
@@ -77,8 +77,19 @@
...
@@ -77,8 +77,19 @@
#include "pseudotcp.h"
#include "pseudotcp.h"
#include "agent-priv.h"
#include "agent-priv.h"
G_DEFINE_TYPE
(
PseudoTcpSocket
,
pseudo_tcp_socket
,
G_TYPE_OBJECT
);
struct
_PseudoTcpSocketClass
{
GIOStreamClass
parent_class
;
};
typedef
struct
_PseudoTcpSocketPrivate
PseudoTcpSocketPrivate
;
struct
_PseudoTcpSocket
{
GIOStream
parent
;
PseudoTcpSocketPrivate
*
priv
;
};
G_DEFINE_TYPE
(
PseudoTcpSocket
,
pseudo_tcp_socket
,
G_TYPE_OBJECT
);
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// Network Constants
// Network Constants
...
...
agent/pseudotcp.h
View file @
026c15a8
...
@@ -115,17 +115,6 @@ GType pseudo_tcp_socket_get_type (void);
...
@@ -115,17 +115,6 @@ GType pseudo_tcp_socket_get_type (void);
(G_TYPE_INSTANCE_GET_CLASS ((obj), PSEUDO_TCP_SOCKET_TYPE, \
(G_TYPE_INSTANCE_GET_CLASS ((obj), PSEUDO_TCP_SOCKET_TYPE, \
PseudoTcpSocketClass))
PseudoTcpSocketClass))
struct
_PseudoTcpSocketClass
{
GObjectClass
parent_class
;
};
typedef
struct
_PseudoTcpSocketPrivate
PseudoTcpSocketPrivate
;
struct
_PseudoTcpSocket
{
GObject
parent
;
PseudoTcpSocketPrivate
*
priv
;
};
/**
/**
* PseudoTcpDebugLevel:
* PseudoTcpDebugLevel:
* @PSEUDO_TCP_DEBUG_NONE: Disable debug messages
* @PSEUDO_TCP_DEBUG_NONE: Disable debug messages
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment