Author Topic: networking with c++ ?  (Read 1109 times)

0 Members and 1 Guest are viewing this topic.

Offline kapo

  • NULL
  • Posts: 2
  • Cookies: 0
    • View Profile
networking with c++ ?
« on: January 31, 2012, 08:56:20 am »
im new to programming but im becoming pretty efficient with the basics of c++. my question is how did you guys guys learn to network with c++?  i started reading  http://beej.us/guide/bgnet/ and it kinda scrambled my brain -_-
im thinking i need to spend the next few weeks on reading a book about networking? if so, what part of networking should i focus on? (any book recommendations)
my game plan on conquering the computer is:
1. c++
2. http & css
3. php
4. sql
5. python


do you think thats a good order?
born with less but you're still precious ^_^

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: networking with c++ ?
« Reply #1 on: January 31, 2012, 12:43:24 pm »
I am sorry but the beej.us page is pretty clear. If you cannot follow it I suggest you learn some more basics before tackling it again. Also, books on networking is overkill. Never read a book on networking in my life.

Also, your game plan is somewhat flawed. I agree that C++ is a smart thing to learn. Tho HTTP and CSS has very little in common. HTTP is a application layer protocol and CSS is a structured language for styling web sites. I think you mean HTML and CSS, that would make sense. Again, I agree on PHP, very handy language. SQL is pretty much always combined with PHP, so perhaps merge those two into one step. And finally python which is a ok language. Learn either or both of python and perl ;)
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true

Offline rucciva

  • /dev/null
  • *
  • Posts: 7
  • Cookies: 1
    • View Profile
Re: networking with c++ ?
« Reply #2 on: January 31, 2012, 03:30:06 pm »
if you plant to learn network programming, i think you should understand a little (deep is better) about networking, TCP/IP protocol suite 4th edition by Behrouz A. Forouzan is good one for this,,

i haven't learn c++ for network programming, but now i'm learning network programming using python with this book, Foundation of Python Network Programming by Brandon Rhodes and John Goerzen

hope it's help
--CMIIW--

Offline kapo

  • NULL
  • Posts: 2
  • Cookies: 0
    • View Profile
Re: networking with c++ ?
« Reply #3 on: January 31, 2012, 06:12:02 pm »
thanks so much, ii really appreciate your input  :)
nd yea ii meant html :P
born with less but you're still precious ^_^

Offline gh0st

  • Sir
  • ***
  • Posts: 575
  • Cookies: 8
  • #DEDSec
    • View Profile
Re: networking with c++ ?
« Reply #4 on: February 01, 2012, 06:57:18 am »
dude that guide is very easy to underestand well it depends on what topic you are working for example how to send raw data to a specific protocol which I think its the hardest topic on networking but a simple client-server program or a chat client are more easy imo