Forum Discussion Search with BoardTracker.com
Forum Discussion Search with BoardTracker.com
  
  

Advanced  |  Help
    Home Search Alerts Browse My Threads Setup About Login Signup    


» All > Computers & Internet > Software > Networking [26 Forums][Track this Category]
   Browse sub-categories   
No sub-categories for this category

   Latest threads in category   
Developer Web xdr_destroy() and free()  
16:35 13-Aug-07   [Replies: 1, Views: 229]    By: ananthbv
Hi all, I have a question on whether there will be any conflict in using xdr_destroy and free. Basically, I have a 'struct a' like this: Code: struct a { int num; struct b *b; } where 's...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web Threads + Sockets for rough network  
23:29 12-Aug-07   [Replies: 12, Views: 288]    By: apprentice
Hi, I am rather new to sockets, I am managing fine without threads, but I now want to setup a very rough network between nodes (network pcs). Each node should be able to have multiple threads, and...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web please Help::::Error while retrieving datas from socket  
07:08 11-Aug-07   [Replies: 4, Views: 171]    By: cmrhema
Hello, We are currently using a program where we recieve the details from the client. It is recieved through sockets. It is working fine. i.e. When we start the program afresh we do get deta...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web 'getaddrinfo' and 'getnameinfo' errors  
20:33 5-Aug-07   [Replies: 2, Views: 138]    By: tomcio
Hello again! This time I have questions about possible error returned by getaddrinfo and getnameinfo. I use these functions to prepare sockaddr structures, which will be used with connect or b...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web server port  
23:16 4-Aug-07   [Replies: 1, Views: 149]    By: neha
hi , i am writting single server multiple client program.The program requirement is everytime client initiates the connection with server on some port(for example port no.80).After receiving t...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web Getting illegal seek Error  
11:02 3-Aug-07   [Replies: 3, Views: 264]    By: raviinroorkee.7
First time perror shows sucess and then it gives illegal seek CODE:: #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #i...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web Detecting if platform supports IPv6  
10:28 30-Jul-07   [Replies: 1, Views: 100]    By: tomcio
Hello! I need to know if platform, where my library is compiled, supports IPv6. I use Autotools, so if i check using AC_CHECK_FUNC if function 'getaddrinfo ()' is available I can take for gran...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web Encoding character arrays using XDR  
09:03 30-Jul-07   [Replies: 4, Views: 152]    By: ananthbv
I have a cpu structure which contains an integer and an array of 'percpu' structures. I am using the functions xdr_cpu and xdr_percpu to encode it using XDR. When 'xdr_cpu' calls the 'xdr_percpu',...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web multiple IP address to same interface  
08:46 30-Jul-07   [Replies: 3, Views: 167]    By: raviinroorkee.7
How to assign multiple ip address to same interface ? what we can acheive or for what purpose does it solve ? ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web Facing problem with Connect() Function  
06:05 25-Jul-07   [Replies: 3, Views: 156]    By: arun.tayal
Dear All, My client application is in C and server application is in Java and it uses TCP protocol. If at any particular time When the server application is not up and client tries to connect...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web recvfrom()  
01:02 25-Jul-07   [Replies: 4, Views: 218]    By: zhn636
in the udp socket communication ,how can I make a recvfrom() is a non-blocking function? that is to say , if I do not have data to receive,I want to make the function recvfrom() return at once...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web Guide me about troubleshooting  
13:43 24-Jul-07   [Replies: 4, Views: 426]    By: techking555
I'm working as a tech consultant, in my company they gave me a big project. I need to start the project within 1 month I have some problem with my network and database, in our company schedule I n...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web A send only UDP socket?  
20:09 23-Jul-07   [Replies: 3, Views: 242]    By: coredump
When I use sendto() on a UDP socket without using bind. I found that I can still receive the any UDP packet through recv (). Is it possible to specify that I will not be taking any packets so all ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web socket re-bind  
06:46 20-Jul-07   [Replies: 5, Views: 234]    By: vivek526
Hi, I want to specify the source address in the outgoing packets(UDP/TCP). I have created a UDP socket and it binds to port A and address x.x.x.x. Now all packets sent out using this socket fd ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web non-blocking UDP socket not receiving data until calling sendto()  
06:31 20-Jul-07   [Replies: 2, Views: 235]    By: coredump
I have having trouble writing some UDP socket code. I want to write a server to listen to all packets from a UDP port. I used recvfrom() with MSG_DONTWAIT. However, the server will not receive any...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web IP over ATM  
04:57 20-Jul-07   [Replies: 5, Views: 148]    By: raviinroorkee.7
Hi, what does it implies "configuring IP over Atm" .please explain. and how can i configure Ip stack over Atm. ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web Socket programming using C anf JAVA  
14:58 16-Jul-07   [Replies: 3, Views: 245]    By: arun.tayal
Dear All, I am facing a awkward situation.I am reading a integer from Java and receiving it in C using socket programming.But C receives only 1 byte instead of 4 bytes and when I send one mo...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web MAC and IP  
06:45 12-Jul-07   [Replies: 9, Views: 254]    By: kumar_1122
Hi, As MAC is also unique address, why should we go for ip ? ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web Thread and tools  
01:07 12-Jul-07   [Replies: 4, Views: 178]    By: zhn636
If I want to kill a thread in a process from another process ,how can I do? what kinds of methods can I use? what tools can we use to debug our network programs?and what is the best tool to deb...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web unix socket and winsock  
06:01 11-Jul-07   [Replies: 1, Views: 180]    By: zhn636
now I have an socket program using unix socket ,but now I want to convert this program using winsock , what I must consider when I modify this program so that it can run in the windows environment...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Practically Networked home email server  
10:14 9-Jul-07   [Replies: 2, Views: 311]    By: Unnamed
Hi, I'm after a little advice about setting up a home email server. I'd like my "always on" PC (the server) to connect to all my POP3 accounts and store the mail on that machine. The...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web how to know detect error in closing on blocking socket  
13:03 7-Jul-07   [Replies: 4, Views: 225]    By: anter
Hi, I am working simultaneosly with more than one TCP socket using select function. I have a problem with sending data and then closing the socket: I have an opened socket. I call "send...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web bind af_unix  
14:27 3-Jul-07   [Replies: 13, Views: 260]    By: emihaly
i want bind af_unix socket for accepting local connection. its work only one time. when i runn app next time it report address already ... and bind return -1. I work on solaris 10, x86\64. when i ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web ACE  
08:54 27-Jun-07   [Replies: 1, Views: 130]    By: zhn636
if I can use ACE to develop some network applications on unix platform,what I need to consider when I use ACE,and what are the differences between ACE and socket when I write programs? ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
Developer Web ftp socket issue  
17:48 26-Jun-07   [Replies: 5, Views: 244]    By: tantrickitten
Hello, I am having an issue with my ftpd that won't start due to "socket operation on non-socket". Being unfamiliar with sockets I have found lots of documentation on their use but ...
[Tags: No tags defined yet] -
Be the first to Tag this thread

<<First  <Previous  4  5  6  7  8  [9]  10  11  12  13  14  Next>      
   




Research | Board owners portal | BoardTracker Forums | Search plugin | Add your board | About us | Contact us

© Pidgin Technologies Ltd. 2006