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
600a0595
Commit
600a0595
authored
Oct 28, 2008
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make address.[ch] windows compatible
parent
33e6d766
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
address/address.c
address/address.c
+0
-4
address/address.h
address/address.h
+7
-2
No files found.
address/address.c
View file @
600a0595
...
@@ -41,10 +41,6 @@
...
@@ -41,10 +41,6 @@
#include <string.h>
#include <string.h>
#include <arpa/inet.h>
#include <glib.h>
#include "address.h"
#include "address.h"
...
...
address/address.h
View file @
600a0595
...
@@ -38,11 +38,16 @@
...
@@ -38,11 +38,16 @@
#ifndef _ADDRESS_H
#ifndef _ADDRESS_H
#define _ADDRESS_H
#define _ADDRESS_H
#include <glib.h>
#ifdef G_OS_WIN32
#include <winsock2.h>
#else
#include <sys/types.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#
include <glib.h>
#
endif
G_BEGIN_DECLS
G_BEGIN_DECLS
...
...
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