Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
iOS and OS X Network Programming Cookbook

You're reading from   iOS and OS X Network Programming Cookbook If you want to develop network applications for iOS and OS X, this is one of the few books written specifically for those systems. With over 50 recipes and in-depth explanations, it's an essential guide.

Arrow left icon
Product type Paperback
Published in Jan 2014
Publisher
ISBN-13 9781849698085
Length 300 pages
Edition Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Jon Hoffman Jon Hoffman
Author Profile Icon Jon Hoffman
Jon Hoffman
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

iOS and OS X Network Programming Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. BSD Socket Library FREE CHAPTER 2. Apple Low-level Networking 3. Using Libnet 4. Using Libpcap 5. Apple High-level Networking 6. Bonjour 7. AFNetworking 2.0 Library 8. MKNetworkKit Index

Adding libnet to your project


Once libnet is installed, we need to add it to our project to be able to use it. There are a number of ways to do this; we will be covering the recommended way in this recipe.

Getting ready

Before we can add libnet to our project, we need to install it on our system. The Installing libnet recipe in this chapter covers how to do this.

How to do it…

Once the project is created, we will need to follow the ensuing steps to add libnet to it:

  1. Begin by selecting the project in Xcode. Select Target and then select Build Settings; you should be able to see something similar to the following screenshot:

  2. Scroll down in the Build Settings until you get to the Linking section. Under the Other Linker Flags option, add -lnet.

  3. Now scroll down until you reach the Search Paths section and add /usr/local/lib to Library Search Paths as shown in the following screenshot:

  4. Finally, we will want to add /usr/local/include to the header's search path. This will allow us to import the libnet...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image